-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
78 lines (71 loc) · 1.72 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ctf_gameserver"
description = "FAUST Gameserver for attack-defense CTFs"
version = "1.0"
authors = [
{name = "Christoph Egger", email = "christoph.egger@fau.de"},
{name = "Felix Dreissig", email = "f30@f30.me"},
{name = "Simon Ruderich", email = "simon@ruderich.org"},
]
license = "ISC"
readme = "README.md"
requires-python = ">= 3.13"
dependencies = [
"argon2-cffi",
"ConfigArgParse",
"Django == 4.2.*",
"Markdown",
"Pillow",
"prometheus_client",
"requests",
]
[project.optional-dependencies]
dev = [
"bandit",
"mkdocs",
"psycopg2-binary",
"pycodestyle",
"pylint",
"pytest",
"pytest-cov",
]
prod = [
"psycopg2",
"systemd",
]
[project.urls]
homepage = "https://ctf-gameserver.org"
repository = "https://github.com/fausecteam/ctf-gameserver.git"
issues = "https://github.com/fausecteam/ctf-gameserver/issues"
[options.packages.find]
where = "src"
[tool.setuptools]
script-files = [
'scripts/checker/ctf-checkermaster',
'scripts/checker/ctf-logviewer',
'scripts/controller/ctf-controller',
'scripts/submission/ctf-submission',
'scripts/vpnstatus/ctf-vpnstatus',
]
[tool.setuptools.package-data]
"ctf_gameserver.web" = [
"*/templates/*.html",
"*/templates/*.txt",
"templates/*.html",
"templates/*.txt",
"static/robots.txt",
"static/*.css",
"static/*.gif",
"static/*.js",
"static/ext/jquery.min.js",
"static/ext/bootstrap/**/*",
"static/ext/fontawesome-free/css/*",
"static/ext/fontawesome-free/webfonts/*",
"static/ext/fontawesome-free/LICENSE.txt",
]
"ctf_gameserver.web.registration" = [
"countries.csv",
]