-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (56 loc) · 1.73 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (56 loc) · 1.73 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="tronzap-sdk",
version="1.4.0",
description="Official Python SDK for the Tron Energy API by TronZap.com. Buy Tron energy for cheap USDT transfers on TronZap.com",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tron Energy Market",
author_email="support@tronzap.com",
url="https://tronzap.com",
project_urls={
"Homepage": "https://tronzap.com",
"Documentation": "https://docs.tronzap.com/",
"Bug Tracker": "https://github.com/tron-energy-market/tronzap-sdk-python/issues",
"Source Code": "https://github.com/tron-energy-market/tronzap-sdk-python",
"Buy Tron Energy": "https://tronzap.com",
"Support": "https://t.me/tronzap_bot"
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
license="MIT",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3",
install_requires=[
"requests>=2.25.0"
],
keywords=[
"TronZap",
"Tron",
"Trx",
"Tron API",
"Trx API",
"TRX energy",
"Tron energy",
"TRON energy api",
"buy trx energy",
"buy tron energy",
"trx energy market",
"tron energy market",
"usdt energy",
"tether energy",
"USDT",
"TRC20",
"TRC-20",
"cryptocurrency",
"blockchain",
"crypto transfers"
],
)