1+ [build-system ]
2+ requires = [" setuptools>61" , " wheel" , " toml" , " build" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " elastic-warping-visualization"
7+ version = " 0.0.1"
8+ description = " Visualization of Elastic Warping of Time Series Data "
9+ authors = [
10+ {
name =
" Ali Ismail-Fawaz" ,
email =
" [email protected] " },
11+ {
name =
" Maxime Devanne" ,
email =
" [email protected] " },
12+ {
name =
" Stefano Berretti" ,
email =
" [email protected] " },
13+ {
name =
" Jonathan Weber" ,
email =
" [email protected] " },
14+ {
name =
" Germain Forestier" ,
email =
" [email protected] " }
15+ ]
16+ maintainers = [
17+ {
name =
" Ali Ismail-Fawaz" ,
email =
" [email protected] " }
18+ ]
19+ requires-python = " >=3.10"
20+ license = {text = " GPL-3.0-only" }
21+
22+ keywords = [
23+ " data-science" ,
24+ " machine-learning" ,
25+ " data-mining" ,
26+ " time-series" ,
27+ " dynamic-time-warping" ,
28+ " elastic-similarity-measures" ,
29+ " elastic-distances" ,
30+ " time-series-analysis" ,
31+ " time-series-classification" ,
32+ " time-series-regression" ,
33+ " time-series-machine-learning" ,
34+ " data-visualization"
35+ ]
36+
37+ classifiers = [
38+ " Development Status :: 4 - Beta" ,
39+ " Intended Audience :: Developers" ,
40+ " License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
41+ " Programming Language :: Python :: 3" ,
42+ " Programming Language :: Python :: 3.10" ,
43+ " Programming Language :: Python :: 3.11" ,
44+ " Programming Language :: Python :: 3.12"
45+ ]
46+
47+ dependencies = [
48+ " numpy==1.26.4" ,
49+ " aeon==0.10.0" ,
50+ " hydra-core==1.3.2" ,
51+ " omegaconf==2.3.0" ,
52+ " matplotlib==3.9.0"
53+ ]
54+
55+ [project .optional-dependencies ]
56+ dev = [
57+ " black" ,
58+ " flake8" ,
59+ " mypy" ,
60+ " pytest" ,
61+ " pytest-cov" ,
62+ " pytest-xdist" ,
63+ " pytest-timeout" ,
64+ " pytest-rerunfailures" ,
65+ " pre-commit"
66+ ]
67+
68+ [tool .setuptools ]
69+ packages = [" src" ]
0 commit comments