-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (97 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
115 lines (97 loc) · 2.55 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
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
[build-system]
# Minimum requirements for the build system to execute.
# PEP 508 specifications.
requires = [
"setuptools>=69",
"wheel",
"Cython>=3",
'numpy>=2.0; python_version>="3.9"',
'numpy; python_version<"3.9"',
]
build-backend = "setuptools.build_meta"
# https://numpy.org/devdocs/dev/depending_on_numpy.html#for-downstream-package-authors
[project]
name = "dtw-python"
dynamic = ["version"]
dependencies = [
"numpy>=2.0",
"scipy"
]
requires-python = ">=3.9"
authors = [
{name = "Toni Giorgino", email = "toni.giorgino@gmail.com"},
]
description = "A comprehensive implementation of dynamic time warping (DTW) algorithms."
readme = "README.rst"
license = "GPL-3.0-or-later"
keywords = ["timeseries", "alignment"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'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',
]
[project.urls]
Homepage = "https://dynamictimewarping.github.io/"
Repository = "https://github.com/DynamicTimeWarping/dtw-python"
Documentation = "https://dynamictimewarping.github.io/python/"
[project.scripts]
dtw = "dtw.__main__:main"
[project.optional-dependencies]
plots = ["matplotlib"]
[tool.setuptools.packages.find]
# https://setuptools.pypa.io/en/latest/userguide/datafiles.html
namespaces = true
where = ["."]
[tool.setuptools.package-data]
"dtw.data" = ["*.csv"]
[tool.pytest.ini_options]
# https://docs.pytest.org/en/7.3.x/reference/customize.html
#addopts = "--import-mode=importlib"
[tool.ruff]
# https://docs.astral.sh/ruff/configuration/
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
"docs",
]
[dependency-groups]
dev = [
"bump-my-version",
"pytest>=7.0.1",
"pytest-cov>=7.0.0",
"ipython",
"matplotlib"
]