FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
quantdigger/setup.py at master · javaFather/quantdigger · GitHub
javaFather
/
quantdigger
Public
forked from
QuantFans/quantdigger
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
quantdigger
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (42 loc) · 1.26 KB
Breadcrumbs
quantdigger
/
setup.py
Copy path
File metadata and controls
45 lines (42 loc) · 1.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
"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
,
)
Back
|
FazBrowse Home
|
New Git URL