-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 964 Bytes
/
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
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "pylpa"
version = "0.0.0"
authors = [{ name = "Bruno Spilak", email = "[email protected]" }]
description = "Local Parametric Approach Python implementation"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.11"
dependencies = [
"numpy==1.26.4",
"arch>=7.0.0",
"scipy>=1.13.1",
"statsmodels>=0.14.2",
"joblib>=1.4.2",
"coloredlogs>=15.0.1",
]
[project.optional-dependencies]
dev = ["pre-commit", "black", "isort", "pytest"]
data = ["openpyxl"]
[tool.black]
line-length = 79
target-version = ['py311']
include = '\.pyi?$'
extend-exclude = '''
/(
\.git
| \.idea
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''