-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (115 loc) · 3.37 KB
/
pyproject.toml
File metadata and controls
124 lines (115 loc) · 3.37 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
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "stumpy"
version = "1.14.1"
requires-python = ">=3.10"
authors = [
{name = "Sean M. Law", email = "seanmylaw@gmail.com"}
]
description = "A powerful and scalable library that can be used for a variety of time series data mining tasks"
readme = "README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
keywords = ["time series", "matrix profile", "motif", "discord"]
maintainers = [
{name = "Sean M. Law", email = "seanmylaw@gmail.com"},
{name = "Nima Sarajpoor", email = "nimasarajpoor@gmail.com"}
]
license = "BSD-3-Clause"
license-files = ["LICENSE.txt"]
dependencies = [
"numpy >= 1.24",
"scipy >= 1.10",
"numba >= 0.61.2"
]
[tool.setuptools]
packages = ["stumpy"]
[project.optional-dependencies]
ci = [
"pandas >= 0.20.0",
"dask >= 1.2.2",
"distributed >= 1.28.1",
"coverage >= 4.5.3",
"flake8 >= 3.7.7",
"flake8-docstrings >= 1.5.0",
"black >= 22.1.0",
"pytest >= 4.4.1",
"isort >= 5.11.0",
'tbb >= 2019.5 ; platform_system == "Linux"',
"polars >= 1.14.0",
"lxml"
]
[project.urls]
Homepage = "https://github.com/stumpy-dev/stumpy"
Documentation = "https://stumpy.readthedocs.io/en/latest/"
Repository = "https://github.com/stumpy-dev/stumpy"
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
[tool.pixi.dependencies]
# All Conda dependencies.
# Ignores PyPI [dependencies] and [project.optional-dependencies] above
python = ">=3.10"
numpy = ">=1.24"
scipy = ">=1.10"
numba = ">=0.61.2"
# ci
pandas = ">=0.20.0"
dask = ">=1.2.2"
distributed =">=1.28.1"
coverage = ">=4.5.3"
flake8 = ">=3.7.7"
flake8-docstrings = ">=1.5.0"
black = ">=22.1.0"
pytest = ">=4.4.1"
isort = ">=5.11.0"
polars = ">=1.14.0"
pip = "*"
lxml = "*"
numba-cuda = "*"
# readthedocs
sphinx = ">=3.5.3"
pydata-sphinx-theme = "*"
jupyterlab = "*"
matplotlib = "*"
scikit-learn = "*"
numpydoc = "*"
myst-nb = "*"
jupyterlab-myst = "*"
sphinx-togglebutton = "*"
# release
twine = "*"
python-build = "*" # Equivalent to PyPI `build` package
[tool.pixi.activation]
# Always execute ./setup.sh when activating the default environment
# Note that 'stumpy' will only be listed via 'pip list | grep stumpy'
# and not via 'pixi list | grep stumpy' since 'pip install .' is used!
scripts = ["setup.sh"]
[tool.pixi.target.linux-64.dependencies]
# Conda dependencies specific to linux-64
tbb = ">=2019.5"
[tool.pixi.tasks]
# Note that ./setup.sh is executed during [tool.pixi.activation] above
tests = "./test.sh"
coverage = "./test.sh coverage"
docs = "cd docs && ./setup.sh"
black = 'black --exclude=".*\.ipynb" --extend-exclude=".venv|.pixi" ./'
isort = 'isort --profile black --skip .venv --skip .pixi ./'