forked from stefan-jansen/zipline-reloaded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
123 lines (112 loc) · 2.75 KB
/
setup.cfg
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[metadata]
name = zipline-reloaded
url = https://zipline.ml4trading.io
license = Apache 2.0
license_files = LICENSE
description = A backtester for trading algorithms
long_description = file: README.md
long_description_content_type = text/markdown
author = Quantopian Inc
author_email = [email protected]
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Intended Audience :: Science/Research
Topic :: Office/Business :: Financial :: Investment
Topic :: Scientific/Engineering :: Information Analysis
Topic :: System :: Distributed Computing
# [tools:pytest]
# testpaths = tests
# addopts = -v
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = src/zipline/_version.py
versionfile_build = zipline/_version.py
tag_prefix =
parentdir_prefix = zipline-
[flake8]
exclude = versioneer.py, setup.py, .git, __pycache__, docs, conda
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, E501, W503, F403, F401, E231
[options]
python_requires = >=3.7
include_package_data = True
zip_safe = False
packages = find:
package_dir =
= src
install_requires =
alembic >=0.7.7
bcolz-zipline >=1.2.3
bottleneck >=1.0.0
click >=4.0.0
empyrical-reloaded >=0.5.7
h5py >=2.7.1
intervaltree >=2.1.0
iso3166 >=0.9
iso4217 >=1.6.20180829
logbook >=1.0
lru-dict >=1.1.4
multipledispatch >=0.6.0
networkx >=2.0
numexpr >=2.6.1
numpy >=1.14.5
pandas >=1.1.0
patsy >=0.4.0
python-dateutil >=2.4.2
python-interface >=1.5.3
pytz >=2018.5
requests >=2.9.1
scipy >=0.17.1
six >=1.10.0
sqlalchemy >=1.0.8A
statsmodels >=0.6.1
TA-Lib >=0.4.09
tables >=3.4.3
toolz >=0.8.2
trading-calendars >=1.6.1
exchange-calendars <=3.3
[options.packages.find]
where = src
[options.extras_require]
all =
%(docs)s
%(dev)s
%(test)s
test =
tox
pytest >=6.2.3
pytest-cov >=2.11.1
pytest-timeout >=1.4.2
parameterized >=0.6.1
mock >=2.0.0p
testfixtures >=4.1.2
flake8 >=3.9.1
matplotlib >=1.5.3
responses >=0.9.0
pandas-datareader >=0.2.1
coveralls==3.0.1
dev =
flake8 >=3.9.1
black
pre-commit >=2.12.1
docs =
Cython
Sphinx >=1.3.2
numpydoc >=0.5.0
sphinx-autobuild >=0.6.0
pydata-sphinx-theme
sphinx-markdown-tables
m2r2