-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.42 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.42 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
from setuptools import setup
VERSION = "0.7.0"
tests_require = ["pytest"]
requires = [
"requests",
"babel",
"pymempool>=0.1.5",
"btcpriceticker==0.2.2",
"piltext==0.2.3",
"Pillow",
"matplotlib",
"numpy",
"pydantic",
"mplfinance",
"pandas",
]
if __name__ == "__main__":
setup(
name="btc-ticker",
version=VERSION,
description="BTC ticker",
url="http://www.github.com/btc-ticker/btc-ticker",
keywords=["btc", "ticker"],
packages=["btcticker", "btcticker.fonts"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial",
],
install_requires=requires,
package_data={
"btcticker.fonts": ["*.ttf"],
},
setup_requires=["pytest-runner"],
tests_require=tests_require,
include_package_data=True,
)