forked from pviglucci/pypf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 937 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
"""Setup file to work with pypi and pip."""
from setuptools import setup
with open('LICENSE.txt') as f:
license = f.read()
with open('README.rst') as f:
long_description = f.read()
setup(name='pypf',
version='0.9.6',
description='Create point and figure charts',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Office/Business :: Financial :: Investment',
],
keywords='point figure stock chart',
url='http://github.com/pviglucci/pypf',
author='Peter Viglucci',
author_email='[email protected]',
license='MIT License',
packages=['pypf'],
install_requires=['requests', ],
scripts=['pf.py'],
include_package_data=True,
zip_safe=False)