-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.1 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (30 loc) · 1.1 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
#!/usr/bin/env python
VERSION = "1.0.0"
from setuptools import setup, find_packages
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
tests_require = [
"pytest",
]
setup(name="exio",
version=VERSION,
description="ex.io python api",
long_description=open("README.md").read(),
author="Jake Li",
author_email="zyli5313@gmail.com",
url="https://github.com/ex-io/exio-python",
license="MIT",
keywords=["exio, ex.io, exio-python", "exio-api", "BTC", "ETH", "bitcoin", "ethereum"],
packages=find_packages(exclude=["tests"]),
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
],
)