Skip to content

Commit 02a9126

Browse files
committed
Add setup file
1 parent 29d6770 commit 02a9126

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

setup.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)