mirror of
https://github.com/wassname/pandas-ta.git
synced 2026-06-27 16:10:07 +08:00
33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from distutils.core import setup
|
|
|
|
long_description = "A Python 3 Pandas Extension of Technical Analysis Indicators"
|
|
|
|
setup(
|
|
name = "pandas_ta",
|
|
packages = ["pandas_ta"],
|
|
version = "0.0.3a",
|
|
description=long_description,
|
|
long_description=long_description,
|
|
author = "Kevin Johnson",
|
|
author_email = "appliedmathkj@gmail.com",
|
|
url = "https://github.com/twopirllc/pandas-ta",
|
|
maintainer="Kevin Johnson",
|
|
maintainer_email="appliedmathkj@gmail.com",
|
|
# install_requires=['numpy','pandas'],
|
|
download_url = "https://github.com/twopirllc/pandas-ta.git",
|
|
keywords = ['technical analysis', 'python3', 'pandas'],
|
|
license="The MIT License (MIT)",
|
|
classifiers = [
|
|
'Programming Language :: Python :: 3.7',
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Natural Language :: English',
|
|
'Framework :: Pandas',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Financial and Insurance Industry',
|
|
'Topic :: Office/Business :: Financial :: Investment',
|
|
],
|
|
# zip_safe=False,
|
|
)
|