This repository has been archived by the owner on Sep 2, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 701
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d452fa
commit 6afa385
Showing
1 changed file
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,28 +2,30 @@ | |
from os import path | ||
|
||
classifiers = [ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Financial and Insurance Industry', | ||
'Programming Language :: Python', | ||
'Operating System :: OS Independent', | ||
'Natural Language :: English', | ||
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Financial and Insurance Industry", | ||
"Programming Language :: Python", | ||
"Operating System :: OS Independent", | ||
"Natural Language :: English", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
] | ||
|
||
# read the contents of your README file | ||
this_directory = path.abspath(path.dirname(__file__)) | ||
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: | ||
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup(name='finta', | ||
version='0.3.8', | ||
description=' Common financial technical indicators implemented in Pandas.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
url='https://github.com/peerchemist/finta', | ||
author='Peerchemist', | ||
author_email='[email protected]', | ||
license='LGPLv3+', | ||
packages=['finta'], | ||
install_requires=['pandas', 'numpy'] | ||
) | ||
setup( | ||
name="finta", | ||
version="0.3.9", | ||
description=" Common financial technical indicators implemented in Pandas.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
keywords=["technical analysis", "ta", "pandas", "finance", "numpy", "analysis"], | ||
url="https://github.com/peerchemist/finta", | ||
author="Peerchemist", | ||
author_email="[email protected]", | ||
license="LGPLv3+", | ||
packages=["finta"], | ||
install_requires=["pandas", "numpy"], | ||
) |