-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
69 lines (62 loc) · 2.54 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
# Base setup stuff for packaging of scap. Version numbers, authors, all that
# jazz
#
# Copyright © 2014-2025 Wikimedia Foundation and Contributors.
#
# This file is part of Scap.
#
# Scap is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Scap"
dynamic = ["version", "dependencies"]
description = "Deployment toolchain for Wikimedia projects"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "GNU GPLv3"}
authors = [
{name = "Ahmon Dancy", email = "[email protected]"},
{name = "Antoine Musso", email = "[email protected]"},
{name = "Brennen Bearnes", email = "[email protected]"},
{name = "Bryan Davis", email = "[email protected]"},
{name = "Chad Horohoe", email = "[email protected]"},
{name = "Dan Duvall", email = "[email protected]"},
{name = "Giuseppe Lavagetto", email = "[email protected]"},
{name = "Jaime Nuche", email = "[email protected]"},
{name = "Jeena Huneidi", email = "[email protected]"},
{name = "Mukunda Modell", email = "[email protected]"},
{name = "Ori Livneh", email = "[email protected]"},
{name = "Tyler Cipriani", email = "[email protected]"},
]
maintainers = [
{name = "Wikimedia Foundation Release Engineering", email = "[email protected]"},
]
keywords = ["deploy", "deployment", "scap", "scap2", "scap3"]
classifiers = [
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
Homepage = "https://gitlab.wikimedia.org/repos/releng/scap"
[project.scripts]
scap = "scap:cli.Application.run"
[tool.setuptools.dynamic]
version = {attr = "scap.version.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.setuptools]
packages = ["scap", "scap.spiderpig", "web.dist", "web.dist.assets"]
script-files = ["bin/install_local_version.sh"]