-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (91 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
98 lines (91 loc) · 2.25 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
[build-system]
requires = [
"scikit-build-core>=0.11",
"pybind11>=3.0",
"numpy>=2.0",
]
build-backend = "scikit_build_core.build"
[project]
name = "tick"
version = "0.8.0.2"
description = "Module for statistical learning, with a particular emphasis on time-dependent modelling"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Emmanuel Bacry" },
{ name = "Stephane Gaiffas" },
{ name = "Martin Bompaire" },
{ name = "Søren V. Poulsen" },
{ name = "Maryan Morel" },
{ name = "Simon Bussy" },
{ name = "Philip Deegan" },
]
dependencies = [
"numpy>=2.0",
"scipy>=1.13",
"pandas>=2.2",
"dill>=0.3.8",
"scikit-learn>=1.5",
"packaging>=24.0",
"matplotlib>=3.8",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
docs = [
"numpydoc>=1.8",
"sphinx>=8.0",
"sphinx-bootstrap-theme>=0.8",
"statsmodels>=0.14",
]
dev = [
"pytest>=8.3",
"psutil>=5.9",
"build>=1.2",
"twine>=5.1",
"ruff>=0.11",
"numpydoc>=1.8",
]
[tool.cibuildwheel]
build = "cp311-* cp312-* cp313-* cp314-*"
skip = "*-musllinux_* *-win32 *-manylinux_i686"
build-verbosity = 1
test-command = "python -c \"import tick; print(tick.__version__)\""
[tool.cibuildwheel.linux]
archs = ["x86_64"]
manylinux-x86_64-image = "manylinux_2_28"
[tool.cibuildwheel.macos]
archs = ["auto"]
environment = { MACOSX_DEPLOYMENT_TARGET = "11.0" }
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.scikit-build]
cmake.version = ">=3.24"
wheel.packages = ["tick"]
build-dir = "_skbuild/{wheel_tag}"
sdist.include = [
"CMakeLists.txt",
"python/src/**",
"lib/**",
"tick/**",
"requirements/**",
"README.md",
"LICENSE.txt",
"MANIFEST.in",
]