-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (74 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools >= 61", "setuptools_scm>=7"]
[project]
classifiers = [
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development"
]
dependencies = [
"tensorflow>1",
"pandas>=1.1.0",
"matplotlib>=3.5"
]
dynamic = ["version"]
license = {text = "Apache Software License (Apache 2.0)"}
name = "tensorflow_time_series_dataset"
readme = "README.md"
requires-python = ">=3.7"
[project.optional-dependencies]
develop = [
'tensorflow_time_series_dataset[test]',
'commitizen',
'ipykernel',
'pre-commit',
'python-lsp-ruff',
'python-lsp-server[all]',
'ruff'
]
docs = [
'tensorflow_time_series_dataset[test]',
'pdoc'
]
test = [
'pytest',
'pytest-xdist'
]
[project.urls]
Changelog = "https://github.com/MArpogaus/tensorflow_time_series_dataset/blob/dev/CHANGELOG.md"
Documentation = "https://marpogaus.github.io/tensorflow_time_series_dataset"
Issues = "https://github.com/MArpogaus/tensorflow_time_series_dataset/issues"
Repository = "https://github.com/MArpogaus/tensorflow_time_series_dataset"
[tool.commitizen]
major_version_zero = true
name = "cz_conventional_commits"
tag_format = "v$version"
update_changelog_on_bump = true
version_provider = "scm"
version_scheme = "pep440"
[tool.ruff]
indent-width = 4
line-length = 88
target-version = "py37"
[tool.ruff.lint]
select = ["I", "E", "F"]
[tool.setuptools_scm]
# https://stackoverflow.com/a/74404703
# omits local version, useful because pypi does not support it
local_scheme = "no-local-version"