forked from Gbox4/tstock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 897 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
from tstock.settings import __version__
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name="tstock",
version=__version__,
author="Gabe Banks",
author_email="[email protected]",
description="A command line tool for generating stock charts in the terminal.",
long_description=readme(),
long_description_content_type="text/markdown",
keywords="tstock stock ticker finance crypto",
url="https://github.com/Gbox4/tstock",
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
],
packages=["tstock"],
install_requires=["requests", "numpy"],
entry_points={"console_scripts": ["tstock=tstock.__main__:main"]},
python_requires=">=3.6")