forked from TDAmeritrade/stumpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (57 loc) · 1.73 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "stumpy"
version = "1.13.0"
requires-python = ">=3.9"
authors = [
{name = "Sean M. Law", email = "[email protected]"}
]
description = "A powerful and scalable library that can be used for a variety of time series data mining tasks"
readme = "README.rst"
classifiers = [
"Development Status :: 3 - Alpha",
"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.9",
]
keywords = ["time series", "matrix profile", "motif", "discord"]
maintainers = [
{name = "Sean M. Law", email = "[email protected]"},
{name = "Nima Sarajpoor", email = "[email protected]"}
]
license = {text = "3-clause BSD License"}
dependencies = [
"numpy >= 1.22",
"scipy >= 1.10",
"numba >= 0.59.1"
]
[tool.setuptools]
packages = ["stumpy"]
license-files = ["LICENSE.txt"]
[project.optional-dependencies]
ci = [
"pandas >= 0.20.0",
"dask >= 1.2.2",
"distributed >= 1.28.1",
"coverage >= 4.5.3",
"flake8 >= 3.7.7",
"flake8-docstrings >= 1.5.0",
"black >= 22.1.0",
"pytest >= 4.4.1",
"isort >= 5.11.0",
'tbb >= 2019.5 ; platform_system == "Linux"'
]
[project.urls]
Homepage = "https://github.com/TDAmeritrade/stumpy"
Documentation = "https://stumpy.readthedocs.io/en/latest/"
Repository = "https://github.com/TDAmeritrade/stumpy"