-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (39 loc) · 1.35 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
[project]
name = "patsemb"
version = "0.1.2"
description = "PaTSEmb: Pattern-based Time Series Embedding"
requires-python = ">=3.8,<=3.12"
authors = [
{name = "Louis Carpentier", email = "[email protected]"}
]
keywords = ["machine-learning", "time-series", "semantic-segmentation", "data-mining"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"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"
]
dynamic = ["dependencies"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
file = "LICENSE"
[project.urls]
homepage = "https://pypi.org/project/patsemb/"
repository = "https://github.com/ML-KULeuven/PaTSEmb"
changelog = "https://github.com/ML-KULeuven/PaTSEmb/blob/main/CHANGELOG.md"
documentation = "https://PaTSEmb.readthedocs.io/"
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["patsemb", "patsemb.*"] # alternatively: `exclude = ["additional*"]`
namespaces = false
[tool.setuptools.package-data]
"pattern_mining.SPMF" = ["spmf.jar"]
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]