-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
31 lines (25 loc) · 1015 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
30
31
import setuptools
setuptools.setup(
name="stocktrends",
version="0.1.5",
url="https://github.com/chillaranand/stocktrends",
author="chillar anand",
author_email="chillar@avilpage.com",
description="Python package to plot stock, derivative(futures & options) trends with charts like renko, line break, pnf etc",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable'
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)