forked from jjhesk/tronpytool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
139 lines (120 loc) · 3.39 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
132
133
134
135
136
137
138
139
#!/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 iex-Base.
:license: MIT License
"""
import codecs
import os
import platform
from setuptools import (
find_packages,
setup,
)
py_version = platform.python_version()
def find_version():
f = codecs.open('version', 'r', 'utf-8-sig')
line = f.readline()
f.close()
return line
PACKAGE_VERSION = str(find_version())
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",
"pdoc3",
"sphinx_rtd_theme>=0.1.9",
"toposort>=1.4",
"urllib3",
"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 = [
"cytoolz>=0.9.0,<1.0.0;implementation_name=='cpython'",
"eth-abi>=2.1.1,<3.0.0",
"ecdsa>=0.15",
"eth-utils>=1.3.0,<2.0.0",
"eth-hash[pycryptodome]>=0.2.0,<1.0.0",
"trx-utils",
# "eth-account<1.0.0"
"eth-account>=0.5.3,<0.6.0",
"requests>=2.25.1",
"hexbytes>=0.1.0",
"six",
"bs4",
"base58>=2.0.0,<3.0.0"
]
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='tronpytool',
version=PACKAGE_VERSION,
description='A Python API for interacting with Tron networks',
long_description=PACKAGE_LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
keywords='tron tron-api tron-api-python iex-base cli sdk pentest lovestories sexmachine',
url='https://github.com/iexbase/tron-api-python',
author='Sederov & Heskemo & Morgan',
author_email='[email protected]',
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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['examples']),
include_package_data=True,
install_requires=install_requires,
tests_require=EXTRAS_REQUIRE['tester'],
extras_require=EXTRAS_REQUIRE,
)