-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
62 lines (56 loc) · 1.57 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
[project]
name = "claspy"
version = "0.2.4"
description = ""
readme = "README.md"
authors = [
{name = "Arik Ermshaus", email = "ermshaua@informatik.hu-berlin.de"}
]
keywords = [
"machine-learning",
"time-series",
"unsupervised-learning",
"segmentation",
"change-points"
]
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"
]
requires-python = ">=3.7,<3.12"
dependencies = [
"numpy>=1.21.0,<1.25",
"numba>=0.53",
"pandas>=1.1.0,<1.6.0",
"scikit-learn>=0.24.0,<1.3.0",
"scipy<2.0.0,>=1.2.0",
"statsmodels>=0.13.5",
"matplotlib>=3.3"
]
[project.urls]
repository = "https://github.com/ermshaua/claspy"
#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"