-
Notifications
You must be signed in to change notification settings - Fork 249
/
pyproject.toml
85 lines (79 loc) · 1.98 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
[project]
name = "arch"
dynamic = ["dependencies", "version", "readme"]
license = { file = "LICENSE.md" }
authors = [{ name = "Kevin Sheppard", email = "[email protected]" }]
maintainers = [
{ name = "Kevin Sheppard", email = "[email protected]" },
]
description = "ARCH for Python"
requires-python = ">=3.9"
keywords = [
"arch",
"ARCH",
"variance",
"econometrics",
"volatility",
"finance",
"GARCH",
"bootstrap",
"random walk",
"unit root",
"Dickey Fuller",
"time series",
"confidence intervals",
"multiple comparisons",
"Reality Check",
"SPA",
"StepM",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering",
]
[project.urls]
homepage = "https://github.com/bashtage/arch"
documentation = "https://bashtage.github.io/arch/"
repository = "https://github.com/bashtage/arch"
changelog = "https://bashtage.github.io/arch/changes.html"
[build-system]
requires = [
"setuptools>=61",
"wheel",
"setuptools_scm[toml]>=8.0.3,<9",
"cython>=3.0.10",
"numpy>=2.0.0rc1,<3"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.black]
target-version = ['py39', 'py310', 'py311', 'py312']
exclude = '''
(
\.egg
| \.git
| \.mypy_cache
| \.oytest_cache
| _build
| buck-out
| build
| dist
)
'''
[tool.setuptools_scm]
write_to = "arch/_version.py"
[tool.ruff.lint]
typing-modules = ["arch.typing"]