forked from iexbase/tron-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
110 lines (97 loc) · 2.91 KB
/
setup.py
File metadata and controls
110 lines (97 loc) · 2.91 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/usr/bin/env python
# --------------------------------------------------------------------
# Copyright (c) iEXBase. All rights reserved.
# Licensed under the MIT License.
# See License.txt in the project root for license information.
# --------------------------------------------------------------------
"""
setup
=====
Tron: A Python API for interacting with Tron (TRX)
:copyright: © 2018 by the iEXBase.
:license: MIT License
"""
import os
import platform
from setuptools import find_packages, setup
py_version = platform.python_version()
PACKAGE_VERSION = "3.0.5"
EXTRAS_REQUIRE = {
"tester": ["coverage", "pep8", "pyflakes", "pylint", "pytest-cov"],
"docs": [
"mock",
"sphinx-better-theme>=0.1.4",
"click>=5.1",
"configparser==3.5.0",
"contextlib2>=0.5.4",
"py-solc>=0.4.0",
"pytest>=2.7.2",
"sphinx",
"sphinx_rtd_theme>=0.1.9",
"toposort>=1.4",
"urllib3",
"tronapi",
"wheel",
],
"dev": [
"bumpversion",
"flaky>=3.3.0",
"hypothesis>=3.31.2",
"pytest>=3.5.0,<4",
"pytest-mock==1.*",
"pytest-pythonpath>=0.3",
"pytest-watch==4.*",
"pytest-xdist==1.*",
"setuptools>=36.2.0",
"tox>=1.8.0",
"tqdm",
"when-changed",
],
}
EXTRAS_REQUIRE["dev"] = (
EXTRAS_REQUIRE["tester"] + EXTRAS_REQUIRE["docs"] + EXTRAS_REQUIRE["dev"]
)
install_requires = [
"toolz>=0.9.0,<1.0.0;implementation_name=='pypy'",
"cytoolz>=0.9.0,<1.0.0;implementation_name=='cpython'",
"eth-abi>=2.0.0b4,<3.0.0",
"eth-account>=0.2.1,<0.4.0",
"eth-utils>=1.3.0,<2.0.0",
"hexbytes>=0.1.0,<1.0.0",
"requests>=2.16.0,<3.0.0",
"pycryptodome",
"base58",
"ecdsa",
"attrdict",
]
this_dir = os.path.dirname(__file__)
readme_filename = os.path.join(this_dir, "README.rst")
with open(readme_filename) as f:
PACKAGE_LONG_DESCRIPTION = f.read()
setup(
name="tronapi",
version=PACKAGE_VERSION,
description="A Python API for interacting with Tron (TRX)",
long_description=PACKAGE_LONG_DESCRIPTION,
keywords="tron tron-api tron-api-python iexbase",
url="https://github.com/iexbase/tron-api-python",
author="Shamsudin Serderov",
author_email="steein.shamsudin@gmail.com",
license="MIT License",
zip_safe=False,
python_requires=">=3.6,<4",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=["examples"]),
include_package_data=True,
install_requires=install_requires,
tests_require=EXTRAS_REQUIRE["tester"],
extras_require=EXTRAS_REQUIRE,
)