forked from andelf/tronpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 793 Bytes
/
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
from setuptools import setup
packages = ["tronpy", "tronpy.keys", "tronpy.providers"]
package_data = {"": ["*"]}
install_requires = [
"base58",
"coincurve",
"eth_abi>=4.0.0a,<5.0.0",
"httpx",
"pycryptodome<4",
"requests",
]
setup_kwargs = {
"name": "tronpy",
"version": "0.3.0",
"description": "TRON Python client library",
"long_description": open("README.md").read(),
"long_description_content_type": "text/markdown",
"author": "andelf",
"author_email": "[email protected]",
"maintainer": None,
"maintainer_email": None,
"url": "https://github.com/andelf/tronpy",
"packages": packages,
"package_data": package_data,
"install_requires": install_requires,
"python_requires": ">=3.7",
}
setup(**setup_kwargs)