-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (27 loc) · 1.1 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
[project]
name = "tsdistances"
version = "0.0.7"
authors = [
{ name="Alberto Azzari", email="[email protected]" },
{ name="Andrea Cracco", email="[email protected]" },
{ name="Francesco Masillo", email="[email protected]" },
]
description = "tsdistances is a Python library (with Rust backend) for computing various pairwise distances between sets of time series data. It provides efficient implementations of elastic distance measures such as Dynamic Time Warping (DTW), Longest Common Subsequence (LCSS), and Time Warping Edit (TWE). The library is designed to be fast and scalable, leveraging parallel computation for improved performance."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"maturin",
"typeguard",
]
[build-system]
requires = ["maturin>=1.6.0"]
build-backend = "maturin"
[project.urls]
Homepage = "https://github.com/albertoazzari/tsdistances"
Issues = "https://github.com/albertoazzari/tsdistances/issues"