-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
67 lines (61 loc) · 1.72 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
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
[project]
name = "motiflets"
version = "0.5.1"
description = "Motiflets - Simple and Accurate Detection of Motifs in Time Series"
readme = "README.md"
authors = [
{name = "patrickzib", email = "void@void.com"}
]
keywords = [
"machine-learning",
"time-series",
"motif-discovery",
"motif-sets",
"motif-pairs",
"unsupervised",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.7"
dependencies = [
"joblib>=1.1.0",
"numba>=0.55.1",
"numpy>=1.21.0",
"pandas>=1.1.0",
"scikit-learn>=0.24.0",
"scipy<2.0.0",
"seaborn>=0.11.2",
"tqdm>=4.63.0",
"matplotlib>=3.5.1",
"tsdownsample>=0.1.3"
]
[project.urls]
repository = "https://github.com/patrickzib/motiflets"
#documentation = ""
#download = ""
[project.license]
file = "LICENSE"
[build-system]
requires = ["setuptools", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"