-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 1.78 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (70 loc) · 1.78 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "batou_ext"
version = "2.5.4.dev0"
description = "A library of components for batou."
readme = "README.md"
license = {text = "BSD (2-clause)"}
authors = [
{name = "Flying Circus", email = "support@flyingcircus.io"}
]
keywords = ["deployment"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
dependencies = [
"batou >= 2.5",
"configupdater",
"pyaml",
"setuptools",
"six",
"InquirerPy",
]
[project.optional-dependencies]
test = [
"boto3",
"passlib>=1.7",
"pytest",
"pytest-mock",
]
version-select = ["InquirerPy"]
s3-bootstrap = ["boto3", "InquirerPy"]
[project.urls]
Homepage = "https://github.com/flyingcircusio/batou_ext"
Changelog = "https://github.com/flyingcircusio/batou_ext/blob/master/CHANGES.md"
Documentation = "https://batou.readthedocs.io"
[project.scripts]
jenkins = "batou_ext.jenkins:main"
fcio = "batou_ext.fcio:main"
versions = "batou_ext.versions:main"
s3_bootstrap = "batou_ext.s3_bootstrap:main [s3-bootstrap]"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "--pyargs batou_ext"
[tool.scriv]
format = "md"
fragment_directory = "CHANGES.d"
output_file = "CHANGES.md"
version = "unreleased"
entry_title_template = ""
new_fragment_template = "- New changelog entry."
insert_marker = "- Nothing changed yet."
categories = []
[zest.releaser]
version-levels = 3
history-file = "CHANGES.md"
release = "yes"
history_format = "md"
[tool.ruff]
line-length = 80