-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (39 loc) · 2.17 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
version = "1.15.0"
name = "wipac-dev-tools"
description = "Common, basic, and reusable development tools"
readme = "README.md"
keywords = ["WIPAC", "python", "tools", "utilities"]
classifiers = ["Development Status :: 5 - Production/Stable", "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"
dependencies = ["typing_extensions", "requests"]
[[project.authors]]
name = "WIPAC Developers"
email = "developers@icecube.wisc.edu"
[project.license]
file = "LICENSE"
[project.optional-dependencies]
semver = ["semantic-version"]
dev = ["prometheus-client", "pytest", "pytest-flake8", "pytest-mypy", "requests", "semantic-version"]
mypy = ["prometheus-client", "pytest", "pytest-flake8", "pytest-mypy", "requests", "semantic-version"]
[project.urls]
Homepage = "https://pypi.org/project/wipac-dev-tools/"
Tracker = "https://github.com/WIPACrepo/wipac-dev-tools/issues"
Source = "https://github.com/WIPACrepo/wipac-dev-tools"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_variables = ["wipac_dev_tools/__init__.py:__version__"]
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"]