-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (53 loc) · 1.6 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
[project]
name = "coreforecast"
version = "0.0.15"
requires-python = ">=3.9"
dependencies = ["numpy>=1.20.0"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "Fast implementations of common forecasting routines"
authors = [{ name = "Jose Morales", email = "[email protected]" }]
readme = "README.md"
keywords = ["forecasting", "time-series"]
[project.optional-dependencies]
dev = ["pandas", "pre-commit", "pytest"]
[project.urls]
homepage = "https://nixtla.github.io/coreforecast"
documentation = "https://nixtla.github.io/coreforecast"
repository = "https://github.com/Nixtla/coreforecast"
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build"
cmake.verbose = true
logging.level = "INFO"
sdist.exclude = ["docs", "tests", "*.yml"]
sdist.reproducible = true
wheel.exclude = ["Release"]
wheel.expand-macos-universal-tags = true
wheel.install-dir = "coreforecast"
wheel.packages = ["python/coreforecast"]
[tool.cibuildwheel]
archs = "all"
build-verbosity = 3
test-extras = "dev"
test-skip = "*linux_aarch64"
[tool.pyright]
venvPath = "."
venv = ".venv"
[tool.ruff.lint]
select = [
"F", # pyflakes
"I", # isort
]