forked from XenonLab/xecd-rates-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 908 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='xecd_rates_client',
version='1.0.0',
url='https://github.com/XenonLab/xecd-rates-client-python',
packages=setuptools.find_packages(exclude=['tests*']),
description='XECD REST Client',
long_description=long_description,
long_description_content_type="text/markdown",
author='XE.com Inc. Development Team',
author_email='[email protected]',
zip_safe=True,
test_suite='tests',
install_requires=[
'requests>=2.19.1'
],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
)