-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 1.03 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
from setuptools import setup
from stock_chart_tools import __version__
# requirements
with open("requirements.txt") as requirements:
req = [i.strip() for i in requirements]
README = "Tools for creating data series that can be charted"
setup(
name='stock_chart_tools',
version=__version__,
description='Tools for creating data series that can be charted',
url='https://github.com/philfoster/stock_chart_tools',
author='Philip Foster',
author_email='[email protected]',
license='GPL v3',
packages=['stock_chart_tools'],
package_dir={"stock_chart_tools": "stock_chart_tools"},
install_requires=req,
platforms=["any"],
keywords=["technical-analysis", "macd", "ema", "sma", "stocks"],
long_description_content_type="text/markdown",
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3'
]
)