-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
62 lines (54 loc) · 1.8 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
import os
import shutil
import sys
from setuptools import find_packages, setup
def get_readme():
with open("README.md") as f:
return f.read()
if sys.argv[-1] == "publish":
os.system("python setup.py sdist")
os.system("twine upload dist/*")
sys.exit()
shutil.rmtree("dist")
shutil.rmtree("build")
shutil.rmtree("ice3x.egg-info")
sys.exit()
if __name__ == "__main__":
setup(
name="ice3x",
version="0.2.7",
description="Ice3x Crypto Currency Exchanage Python API",
long_description=get_readme(),
long_description_content_type="text/markdown",
author="Bradley Stuart Kirton",
author_email="bradleykirton@gmail.com",
url="https://github.com/bradleykirton/ice3x/",
packages=find_packages(),
include_package_data=True,
license="MIT",
keywords=["exchange", "crypto currency", "rest", "api", "bitcoin", "etherium"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
],
install_requires=["requests"],
extras_require={
"dev": [
"treq",
"pytest_twisted",
"bumpversion",
"pytest",
"pytest-mock",
"pytest-twisted",
"pytest-cov",
"twine",
],
"async": ["treq"],
},
)