-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 loc) · 1.35 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "buildbot-netauth"
authors = [
{name = "classabbyamp", email = "[email protected]"}
]
description = "buildbot plugin for integration with NetAuth"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["secure-access", "authentication-service", "netauth", "buildbot"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
dependencies = [
"netauth",
"buildbot~=4.0.0",
]
[project.optional-dependencies]
ci = [
"ruff",
]
publish = [
"build",
"twine",
]
[project.entry-points."buildbot.util"]
BuildbotNetAuth = "buildbot_netauth:BuildbotNetAuth"
[project.urls]
Repository = "https://github.com/classabbyamp/buildbot-netauth"
Changelog = "https://github.com/classabbyamp/buildbot-netauth/blob/master/CHANGELOG.md"
[tool.setuptools]
packages = ["buildbot_netauth"]
[tool.setuptools.dynamic]
version = {attr = "buildbot_netauth.__version__"}
[tool.ruff]
include = ["buildbot_netauth/**"]
line-length = 120
indent-width = 4
target-version = "py311"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"