Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
peerchemist committed Jun 6, 2019
1 parent 5d452fa commit 6afa385
Showing 1 changed file with 21 additions and 19 deletions.
40 changes: 21 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)

0 comments on commit 6afa385

Please sign in to comment.