From a5117422c03e0666e926472db126f9690fbbf4de Mon Sep 17 00:00:00 2001 From: Kevin Johnson Date: Tue, 28 May 2019 12:26:15 -0700 Subject: [PATCH] setup update --- MANIFEST | 7 ------- setup.py | 32 ++++++++++++++++---------------- 2 files changed, 16 insertions(+), 23 deletions(-) delete mode 100644 MANIFEST diff --git a/MANIFEST b/MANIFEST deleted file mode 100644 index 105b7f5..0000000 --- a/MANIFEST +++ /dev/null @@ -1,7 +0,0 @@ -# file GENERATED by distutils, do NOT edit -README -setup.cfg -setup.py -pandas_ta/__init__.py -pandas_ta/core.py -pandas_ta/utils.py diff --git a/setup.py b/setup.py index 15df2b2..dfac94c 100644 --- a/setup.py +++ b/setup.py @@ -1,24 +1,24 @@ # -*- coding: utf-8 -*- from distutils.core import setup -long_description = "An easy to use Python 3 Pandas Extension of Technical Analysis Indicators" +long_description = "An easy to use Python 3 Pandas Extension with 80+ Technical Analysis Indicators. Can be called from a Pandas DataFrame or standalone like TA-Lib." setup( - name = "pandas_ta", - packages = ["pandas_ta"], - version = "0.1.31b", - 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", + name ="pandas_ta", + packages =['pandas_ta', 'pandas_ta.momentum', 'pandas_ta.overlap', 'pandas_ta.performance', 'pandas_ta.statistics', 'pandas_ta.trend', 'pandas_ta.volatility', 'pandas_ta.volume'], + version ="0.1.31b", + 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 = [ + 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 :: 4 - Beta', 'License :: OSI Approved :: MIT License', @@ -33,7 +33,7 @@ setup( package_data={ 'data': ['data/*.csv'], }, - install_requires=['pandas'], + install_requires =['pandas'], # List additional groups of dependencies here (e.g. development dependencies). # You can install these using the following syntax, for example: