[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/javaFather/quantdigger/master/setup.py [Back]  [Original]

# -*- coding: utf-8 -*-
from codecs import open

from setuptools import setup, find_packages

with open("README.rst", "r", "utf-8") as f:
    readme = f.read()

setup(
    name="QuantDigger",
    version="0.6.0",
    description="Python",
    long_description=readme,
    author="QuantFans",
    author_email="dingjie.wang@foxmail.com",
    license="MIT",
    url="https://github.com/QuantFans/quantdigger",
    packages=find_packages(exclude=['tests', 'demo', "requirements", "images"]),
    include_package_data=True,
    install_requires=[
        "tushare>=0.8.2",
        "logbook>=0.12.5",
        "ta-lib>=0.4.8",
        "progressbar2>=3.6.2",
        "matplotlib>=1.5.1",
        "pandas>=0.20.2",
        "python-dateutil>=2.4.2",
        "numpy>=1.10.4",
        "pymongo>=3.1.1",
        "pyzmq>=4.1.5",
        "lxml>=3.5.0",
        "six"
        #"cython>=0.23.4",
    ],
    classifiers=[
        #'Environment :: Finance',
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: MIT License",
        'Topic :: Software Development :: Libraries :: Python Modules',
        "Operating System :: OS Independent",
        'Programming Language :: Python',
    ],
    zip_safe=False,
)

Web Proxy Viewer  |  New URL  |  Original Page