forked from QuantFans/quantdigger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (42 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
45
# -*- 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="[email protected]",
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,
)