-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
35 lines (32 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
"""Augment pandas DataFrame with methods to fetch time series data for quant finance"""
__version__ = '0.2.7'
import os
from setuptools import setup, find_packages
setup(
name=os.path.basename(os.path.dirname(os.path.abspath(__file__))),
version=__version__,
author='KIC',
author_email='',
packages=find_packages(),
scripts=[],
url='https://github.com/KIC/pandas-ml-quant',
license='MIT',
description=__doc__,
long_description=open('Readme.md').read(),
long_description_content_type='text/markdown',
install_requires=["pandas-ml-common", "pandas-ml-utils", "pandas-ml-quant", *open("requirements.txt").read().splitlines()],
extras_require={
"dev": open("dev-requirements.txt").read().splitlines(),
},
include_package_data=True,
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords=['pandas', 'ml', 'util', 'quant', 'data', 'timeseries'],
)