forked from multiversx/mx-deprecated-sdk-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.3 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
import setuptools
with open("README.md", "r") as fh:
long_description = "https://github.com/ElrondNetwork/erdpy"
# See https://packaging.python.org/tutorials/packaging-projects/
setuptools.setup(
name="erdpy",
version="1.0.12",
description="Elrond Smart Contracts Tools and Python SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ElrondNetwork/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>=3.2", "prettytable"
],
zip_safe=False,
keywords=["Elrond"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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.6"
)