forked from quantopian/alphalens
-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathpyproject.toml
More file actions
177 lines (150 loc) · 3.76 KB
/
pyproject.toml
File metadata and controls
177 lines (150 loc) · 3.76 KB
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
170
171
172
173
174
175
176
177
[project]
name = "alphalens-reloaded"
description = "Performance analysis of predictive (alpha) stock factors"
requires-python = '>=3.10'
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = 'Quantopian Inc' },
{ email = 'pm@ml4trading.io' }
]
maintainers = [
{ name = 'Stefan Jansen' },
{ email = 'pm@ml4trading.io' }
]
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Information Analysis',
]
dependencies = [
# following pandas
"numpy>=1.23.5; python_version<'3.12'",
"numpy>=1.26.0; python_version>='3.12'",
"pandas >=1.5.0,<3.0",
"matplotlib >=1.4.0",
"scipy >=0.14.0",
"seaborn >=0.6.0",
"statsmodels >=0.6.1",
"IPython >=3.2.3",
"empyrical-reloaded>=0.5.7"
]
[project.urls]
homepage = 'https://ml4trading.io'
repository = 'https://github.com/stefan-jansen/alphalens-reloaded'
documentation = 'https://alphalens.ml4trading.io'
[build-system]
requires = [
'setuptools>=54.0.0',
"setuptools_scm[toml]>=6.2",
]
build-backend = 'setuptools.build_meta'
[project.optional-dependencies]
test = [
"tox >=2.3.1",
"coverage >=4.0.3",
"coveralls ==3.0.1",
"pytest >=6.2",
'pytest-xdist >=2.5.0',
"pytest-cov >=2.12",
"parameterized >=0.6.1",
"flake8 >=3.9.1",
"black",
]
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',
"sphinx_copybutton",
'm2r2'
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ['src']
exclude = ['tests*']
[tool.setuptools_scm]
write_to = "src/alphalens/_version.py"
version_scheme = 'guess-next-dev'
local_scheme = 'dirty-tag'
[tool.pytest.ini_options]
pythonpath = ['src']
minversion = "6.0"
testpaths = 'tests'
addopts = '-v'
[tool.cibuildwheel]
test-extras = "test"
test-command = "pytest -n 2 {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']
include = '\.pyi?$'
extend-exclude = '''
\(
docs/source/conf.py
\)
'''
[tool.tox]
legacy_tox_ini = """
[tox]
envlist =
py310-pandas{15,20,21,22}-numpy1
py311-pandas{15,20,21,22}-numpy1
py312-pandas{15,20,21,22}-numpy1
py310-pandas222-numpy2{0,1,2}
py311-pandas222-numpy2{0,1,2}
py312-pandas222-numpy2{0,1,2}
isolated_build = True
skip_missing_interpreters = True
minversion = 3.23.0
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[testenv]
usedevelop = True
setenv =
MPLBACKEND = Agg
changedir = tmp
extras = test
deps =
pandas15: pandas>=1.5.0,<1.6
pandas20: pandas>=2.0,<2.1
pandas21: pandas>=2.1,<2.2
pandas22: pandas>=2.2,<2.3
pandas222: pandas>=2.2.2,<2.3
numpy1: numpy>=1.23.5,<2.0
numpy20: numpy>=2.0.0,<2.1.0
numpy21: numpy>=2.1.0,<2.2.0
numpy22: numpy>=2.2.0,<2.3.0
commands =
pytest -n 2 --cov={toxinidir}/src --cov-report term --cov-report=xml --cov-report=html:htmlcov {toxinidir}/tests
"""