forked from vechain/thor-devkit.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.17 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
import setuptools
long_description = ''
with open("README.md", "r") as fh:
long_description = fh.read()
assert long_description
setuptools.setup(
name="thor-devkit",
version="1.0.14",
author="A Byte Ahead",
author_email="laalaguer@gmail.com",
description="SDK to interact with VeChain Thor public blockchain.",
keywords="vechain thor blockchain sdk",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
url="https://github.com/laalaguer/thor-devkit.py",
project_urls={
'Documentation': 'https://github.com/laalaguer/thor-devkit.py',
'Source': 'https://github.com/laalaguer/thor-devkit.py',
'Issue Tracker': 'https://github.com/laalaguer/thor-devkit.py/issues',
},
python_requires='>=3.6',
install_requires=[x.strip() for x in open('requirements.txt')],
packages=setuptools.find_packages(),
)