-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (37 loc) · 1.95 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "0.1.3"
dependencies = ["numpy", "scipy"]
name = "icecube-voka"
description = "Sanity checks on sequences/histograms using ML techniques. "
readme = "README.md"
keywords = ["histogram comparison", "outlier detection", "statistical tests", "empirical p-value threshold", "poissonian statistics"]
classifiers = ["Development Status :: 4 - Beta", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13"]
requires-python = ">=3.9, <3.14"
[[project.authors]]
name = "IceCube"
email = "[email protected]"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
tests = ["pytest"]
[project.urls]
Homepage = "https://pypi.org/project/icecube-voka/"
Tracker = "https://github.com/icecube/voka/issues"
Source = "https://github.com/icecube/voka"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = []
commit_parser = "emoji"
build_command = "pip install build && python -m build"
[tool.semantic_release.commit_parser_options]
major_tags = ["[major]"]
minor_tags = ["[minor]", "[feature]"]
patch_tags = ["[patch]", "[fix]", " ", "!", "#", "$", "%", "&", "'", "(", ")", "*", "+", "-", ".", "/", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", ";", "<", "=", ">", "?", "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "[", "]", "^", "_", "`", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "{", "|", "}", "~"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.packages.find]
namespaces = false
exclude = ["test", "tests", "doc", "docs", "resource", "resources", "example", "examples"]