forked from stefan-jansen/pyfolio-reloaded
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
156 lines (132 loc) · 3.18 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
[project]
name = "pyfolio-tej"
description = "Performance and risk analysis of financial portfolios with Python"
requires-python = '>=3.8'
dynamic = ["version"]
readme = "README.md"
authors = [
{ name = 'tej' },
{ email = '[email protected]' }
]
maintainers = [
{ name = 'tej api Development Team' },
{ email = '[email protected]' }
]
license = { text = 'Apache-2.0'}
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Information Analysis',
]
dependencies = [
"tqdm",
"scikit-learn",
"distributed",
]
[project.urls]
homepage = 'https://tquant.tejwin.com/'
repository = 'https://github.com/tejtw/pyfolio-tej'
[build-system]
requires = [
'setuptools>=54.0.0',
"setuptools_scm[toml]>=6.2",
'wheel>=0.31.0',
'oldest-supported-numpy; python_version>="3.8"',
]
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/pyfolio/_version.py"
version_scheme = 'no-guess-dev'
local_scheme = 'no-local-version'
[tool.pytest]
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 = ['py38', 'py39', 'py310']
include = '\.pyi?$'
extend-exclude = '''
\(
docs/source/conf.py
\)
'''
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{38,39}-pandas12, py{38,39,310}-pandas{13,14,15}, py311-pandas15
isolated_build = True
skip_missing_interpreters = True
minversion = 3.23.0
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[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
# commands =
# pytest -n 2 --cov={toxinidir}/src --cov-report term --cov-report=xml --cov-report=html:htmlcov {toxinidir}/tests
# """