-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (28 loc) · 876 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
from setuptools import setup
setup(name='cryptochart',
version='0.2',
description='CLI tool to display cryptocurrency candlestick chart on Inky pHAT',
url='http://github.com/DurandA/inky-cryptochart',
author='Arnaud Durand',
author_email='[email protected]',
license='MIT',
packages=['cryptochart', 'cryptochart.fonts'],
install_requires=[
'Pillow',
'matplotlib<3.6',
'mplfinance>=0.12.5a3',
'requests',
],
extras_require={
'inkyphat': ['inkyphat'],
'inky': ['inky'],
'waveshare_epd': ['waveshare_epd']
},
entry_points={
'console_scripts': ['cryptochart = cryptochart.cli:main'],
},
package_data={
'cryptochart': ['cryptochart/fonts/**'],
},
include_package_data=True,
zip_safe=True)