forked from multiversx/mx-sdk-py-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (52 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
with open("README.md", "r") as fh:
long_description = "https://github.com/ElrondNetwork/elrond-sdk-erdpy"
VERSION = "2.0.0"
try:
with open('./erdpy/_version.py', 'wt') as versionfile:
versionfile.write(f'__version__ = "{VERSION}"\n')
except FileNotFoundError:
pass
# See https://packaging.python.org/tutorials/packaging-projects/
setuptools.setup(
name="erdpy",
version=VERSION,
description="Elrond Smart Contracts Tools and Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ElrondNetwork/elrond-sdk-erdpy",
author="Elrond Network",
license="GPL",
packages=setuptools.find_packages(
include=["erdpy*"], exclude=["examples*"]),
include_package_data=True,
setup_requires=["wheel"],
install_requires=[
"toml>=0.10.2",
"bottle",
"requests",
"pynacl",
"pycryptodomex",
"cryptography==36.0.2",
"prettytable",
"ledgercomm[hid]",
"semver",
"requests-cache"
],
zip_safe=False,
keywords=["Elrond"],
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Development Status :: 3 - Alpha"
],
entry_points={
"console_scripts": [
"erdpy=erdpy.cli:main",
],
},
python_requires=">=3.8"
)