We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29d6770 commit 02a9126Copy full SHA for 02a9126
setup.py
@@ -0,0 +1,27 @@
1
+import setuptools
2
+
3
+with open("Readme.md", "r") as fh:
4
+ long_description = fh.read()
5
6
+with open('requirements.txt') as f:
7
+ required = f.read().splitlines()
8
9
+setuptools.setup(
10
+ name="celo-sdk",
11
+ version="0.0.1",
12
+ author="BlaizeTech",
13
+ author_email="[email protected]",
14
+ description="Celo Python SDK to work with smart contracts",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
+ url="",
18
+ packages=setuptools.find_packages(),
19
+ install_requires=required,
20
+ classifiers=[
21
+ "License :: OSI Approved :: MIT License",
22
+ "Operating System :: Unix",
23
+ "Programming Language :: Python :: 3.8",
24
25
+ ],
26
+ python_requires='>=3.8',
27
+)
0 commit comments