-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
104 lines (87 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["poetry-core>=1.2.8"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "compose_x_common"
version = "1.4.10"
description = "Common Library for Compose-X Projects"
authors = ["John Preston <[email protected]>"]
maintainers = ["John Preston <[email protected]>"]
repository = "https://github.com/compose-x/compose-x-common-libs/"
keywords = ["compose-x", "docker", "compose"]
license = "MPL-2.0"
include = [
"LICENSE",
"MANIFEST.in"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.8"
boto3 = ">=1.26,<2.0"
flatdict = "^4.0.1"
python-dateutil = "^2.8.2"
[tool.poetry.dev-dependencies]
placebo = ">=0.9.0,<1.0"
pytest = "^7.2"
Sphinx = "^5.0"
sphinx-material = "^0.0.35"
isort = "^5.12"
black = "^24.3"
pre-commit = "^3.1"
flake8-docstrings = "^1.6.0"
coverage = "^7.0"
tbump = "^6.9.0"
pyupgrade = "^3.8"
sphinx-rtd-theme = "^1.0.0"
[tool.tbump]
github_url = "https://github.com/compose-x/compose-x-common/"
[tool.tbump.version]
current = "1.4.10"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(?:(?P<rc>[\S]+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.file]]
src = "src/compose_x_common/__init__.py"
[[tool.tbump.before_commit]]
name = "Files format"
cmd = "make conform"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = "kelvin"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
[tool.flake8]
exclude = [".git", "__pycache__", "docs/source/conf.py", "old", "build", "dist", "feature"]
max-line-length = 88
max-complexity = 10