forked from swaschke/pypnf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.19 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, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='pypnf',
version='0.0.7',
description='A Package for Point and Figure Charting',
keywords=['Point and Figure', 'PnF', 'Sentiment Indicator'],
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/swaschke/pypnf',
author='Stefan Waschke',
author_email='[email protected]',
license='GPL2',
packages=['pypnf'],
package_data={'pypnf': ['data/*.csv']},
# packages=find_packages(),
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Topic :: Office/Business :: Financial'
],
install_requires=['numpy>=1.20', 'matplotlib>=3.7', 'tabulate>=0.8.9'],
python_requires='>=3.6',
)