forked from stefan-jansen/empyrical-reloaded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
169 lines (143 loc) · 3.41 KB
/
pyproject.toml
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
[project]
name = "empyrical-reloaded"
description = "empyrical computes performance and risk statistics commonly used in quantitative finance"
readme = "README.md"
authors = [
{ name = "Quantopian Inc" },
{ email = "[email protected]" }
]
maintainers = [
{ name = "Stefan Jansen" },
{ email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Operating System :: OS Independent"
]
requires-python = ">=3.7"
dynamic = ["version"]
license = { file = "LICENSE" }
dependencies = [
"numpy >=1.9.2",
"bottleneck >=1.3.0",
"pandas >=1.0.0",
"scipy >=0.15.1",
"peewee<3.17.4" # awwaiting bugfix in latest version: https://github.com/coleifer/peewee/issues/2891
]
[project.urls]
homepage = 'https://ml4trading.io'
documentation = "https://empyrical.ml4trading.io"
repository = 'https://github.com/stefan-jansen/empyrical-reloaded'
[build-system]
requires = [
"setuptools>=54.0.0",
"setuptools_scm[toml]>=6.2",
"wheel>=0.31.0",
"oldest-supported-numpy; python_version>='3.7'"
]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = [
"tox>=2.3.1",
"pytest>=6.2.3",
"pytest-cov>=2.11.1",
"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",
"nbsphinx",
"m2r2"
]
yfinance = [
"yfinance >=0.1.63",
]
datareader = [
"pandas-datareader >=0.4"
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ['src']
exclude = ['tests*']
[tool.setuptools_scm]
write_to = "src/empyrical/_version.py"
version_scheme = 'guess-next-dev'
local_scheme = 'dirty-tag'
[tool.pytest]
testpaths = 'tests'
addopts = '-v'
[tool.cibuildwheel]
test-extras = "test"
test-command = "pytest -n 2 --reruns 5 {package}/tests"
build-verbosity = 3
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64", "universal2"]
test-skip = ["*universal2:arm64"]
[tool.cibuildwheel.linux]
archs = ["auto64"]
skip = "*musllinux*"
[tool.black]
line-length = 88
target-version = ['py39', 'py310', 'py311', 'py312']
exclude = '''
(
asv_bench/env
| \.egg
| \.git
| \.hg
| _build
| build
| dist
| setup.py
)
'''
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39-pandas12, py{39,310}-pandas{13,14,15}, py311-pandas15, py312-pandas20
isolated_build = True
skip_missing_interpreters = True
minversion = 3.23.0
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
usedevelop = True
setenv =
MPLBACKEND = Agg
changedir = tmp
extras = test
deps =
pandas12: pandas>=1.2.0,<1.3
pandas13: pandas>=1.3.0,<1.4
pandas14: pandas>=1.4.0,<1.5
pandas15: pandas>=1.5.0,<1.6
pandas20: pandas>=2.0.0
commands =
pytest --cov={toxinidir}/src --cov-report term --cov-report=xml --cov-report=html:htmlcov {toxinidir}/tests
"""