-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (36 loc) · 1006 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "buildbot-void-theme"
authors = [
{name = "classabbyamp", email = "[email protected]"}
]
description = "Void Linux theme for Buildbot"
readme = "README.md"
requires-python = ">=3.11"
keywords = []
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
dependencies = [
"buildbot~=4.0",
]
[project.optional-dependencies]
publish = [
"twine",
]
[project.entry-points."buildbot.www"]
void_view = "buildbot_void_view:ep"
[project.urls]
Repository = "https://github.com/classabbyamp/buildbot-void-theme"
[tool.setuptools]
packages = ["buildbot_void_view"]
[tool.setuptools.package-data]
buildbot_void_view = ["VERSION", "static/*"]
[tool.setuptools.dynamic]
version = {file = "buildbot_void_view/VERSION"}