forked from stefan-jansen/pyfolio-reloaded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
92 lines (83 loc) · 2.1 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
[metadata]
name = pyfolio-reloaded
url = https://pyfolio.ml4trading.io
description = pyfolio is a Python library for performance and risk analysis of financial portfolios
long_description = file: README.md
long_description_content_type = text/markdown
maintainer = Applied AI, LLC
maintainer email = [email protected]
author = Quantopian Inc
author email = [email protected]
license = Apache License, Version 2.0
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: Apache Software License
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Mathematics
Operating System :: OS Independent
# 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 = pyfolio/_version.py
versionfile_build = pyfolio/_version.py
tag_prefix =
parentdir_prefix = pyfolio-
[nosetests]
verbosity = 2
with-ignore-docstrings = 1
with-timer = 1
timer-top-n = 15
with-coverage = 1
cover-package = pyfolio.tests
with-doctest = 1
logging-level = INFO
[options]
python_requires = >=3.7
include_package_data = True
install_requires =
ipython>=3.2.3
matplotlib>=1.4.0
numpy>=1.11.1
pandas>=0.18.1
pytz>=2014.10
scipy>=0.14.0
scikit-learn>=0.16.1
seaborn>=0.7.1
empyrical-reloaded>=0.5.0
[options.extras_require]
all =
%(doc)s
%(dev)s
%(test)s
test =
tox>=2.3.1
coverage>=4.0.3
nose>=1.3.7
parameterized>=0.6.1
nose-ignore-docstring>=0.2
nose-timer>=0.5.0
flake8>=3.9.1
black
dev =
flake8>=3.9.1
black
pre-commit>=2.12.1
doc =
Cython
Sphinx>=1.3.2
numpydoc>=0.5.0
sphinx-autobuild>=0.6.0
pydata-sphinx-theme
sphinx-markdown-tables
sphinx_copybutton
m2r2