-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
90 lines (69 loc) · 2.11 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
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "git-stream"
description = "Git Stream Implementation"
authors = [{ name = "Jeffery G. Smith", email = "[email protected]" }]
readme = "DOCUMENTATION.md"
license = { file = "LICENSE" }
dynamic = ["version"]
requires-python = "~=3.12"
keywords = ["git", "programming", "utilities"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Natural Language :: English",
]
dependencies = ["BatCave"]
[project.optional-dependencies]
dev = ["vjer", "bumpver"]
# test = []
# doc = []
[project.scripts]
git-stream = "git_stream.__main__:main"
[project.urls]
homepage = "https://github.com/arisilon/git-stream/"
documentation = "https://git-stream.readthedocs.io"
repository = "https://github.com/arisilon/git-stream/"
changelog = "https://github.com/arisilon/git-stream/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["git_stream"]
[tool.setuptools.dynamic]
version = { attr = "git_stream.__version__" }
[tool.flake8]
max-line-length = 200
ignore = ["ANN002", "ANN003", "ANN101", "ANN204", "ANN401"]
[tool.pylint.format]
max-line-length = 200
[tool.pylint.design]
max-attributes = 10
max-args = 10
[tool.pylint.messages_control]
disable = ["duplicate-code", "fixme"]
[[tool.mypy.overrides]]
module = "bumpver.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "docker.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "dotmap.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "xmlrunner.*"
ignore_missing_imports = true
[tool.bumpver]
current_version = "v2.0.2rc0"
version_pattern = "vMAJOR.MINOR.PATCH[PYTAGNUM]"
commit_message = "bump version {old_version} -> {new_version} [skip ci]"
commit = true
tag = false
push = true
[tool.bumpver.file_patterns]
"git_stream/__init__.py" = ["__version__ = '{pep440_version}'"]
# cSpell:ignore buildapi bumpver xmlrunner pytagnum