|
2 | 2 | from os import path |
3 | 3 |
|
4 | 4 | classifiers = [ |
5 | | - 'Development Status :: 3 - Alpha', |
6 | | - 'Intended Audience :: Financial and Insurance Industry', |
7 | | - 'Programming Language :: Python', |
8 | | - 'Operating System :: OS Independent', |
9 | | - 'Natural Language :: English', |
10 | | - 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', |
| 5 | + "Development Status :: 3 - Alpha", |
| 6 | + "Intended Audience :: Financial and Insurance Industry", |
| 7 | + "Programming Language :: Python", |
| 8 | + "Operating System :: OS Independent", |
| 9 | + "Natural Language :: English", |
| 10 | + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", |
11 | 11 | ] |
12 | 12 |
|
13 | 13 | # read the contents of your README file |
14 | 14 | this_directory = path.abspath(path.dirname(__file__)) |
15 | | -with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: |
| 15 | +with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: |
16 | 16 | long_description = f.read() |
17 | 17 |
|
18 | | -setup(name='finta', |
19 | | - version='0.3.8', |
20 | | - description=' Common financial technical indicators implemented in Pandas.', |
21 | | - long_description=long_description, |
22 | | - long_description_content_type='text/markdown', |
23 | | - url='https://github.com/peerchemist/finta', |
24 | | - author='Peerchemist', |
25 | | - |
26 | | - license='LGPLv3+', |
27 | | - packages=['finta'], |
28 | | - install_requires=['pandas', 'numpy'] |
29 | | - ) |
| 18 | +setup( |
| 19 | + name="finta", |
| 20 | + version="0.3.9", |
| 21 | + description=" Common financial technical indicators implemented in Pandas.", |
| 22 | + long_description=long_description, |
| 23 | + long_description_content_type="text/markdown", |
| 24 | + keywords=["technical analysis", "ta", "pandas", "finance", "numpy", "analysis"], |
| 25 | + url="https://github.com/peerchemist/finta", |
| 26 | + author="Peerchemist", |
| 27 | + |
| 28 | + license="LGPLv3+", |
| 29 | + packages=["finta"], |
| 30 | + install_requires=["pandas", "numpy"], |
| 31 | +) |
0 commit comments