-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (29 loc) · 1.07 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies", "optional-dependencies"]
name = "changepoynt"
version = "0.0.8"
authors = [
{ name="Lucas Weber", email="[email protected]" },
]
description = "Several change point detection methods implemented in python."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
license = {file = "LICENSE"}
keywords = ['changepoint', 'timeseries', 'engineering']
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {test = { file = ["requirements_tests.txt"] }, example = { file = ["requirements_examples.txt"] }}
[project.urls]
Homepage = "https://github.com/Lucew/changepoynt"
Issues = "https://github.com/Lucew/changepoynt/issues"
[tool.setuptools]
packages = ["changepoynt", "changepoynt.algorithms", "changepoynt.utils", "changepoynt.visualization"]