-
Notifications
You must be signed in to change notification settings - Fork 84
/
setup.py
131 lines (111 loc) · 3.11 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/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.1.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 >= 0.31.0"
],
'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>=38.6.0",
"tox>=1.8.0",
"twine >= 1.11.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.0b6,<3.0.0",
"eth-account==0.4.0",
"eth-utils>=1.3.0,<2.0.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"trx-utils",
"hexbytes>=0.1.0,<1.0.0",
"requests>=2.16.0,<3.0.0",
"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,
long_description_content_type='text/x-rst',
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,
)