-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
29 lines (27 loc) · 938 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "challtools"
authors = [{ name = "Mateusz Drwal", email = "me@mateuszdrwal.com" }]
description = "A tool for managing CTF challenges and challenge repositories using the OpenChallSpec"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"PyYAML",
"jsonschema>=3.0.0",
"docker>=2.3.0,!=3.1.2,!=5.0.0",
"requests>=2.0.0",
'pypiwin32;platform_system=="Windows"',
"argcomplete>=2.0.0",
"importlib-resources", # backport, only required for python 3.7 & 3.8 support
]
scripts = { challtools = "challtools.cli:main" }
urls = { repository = "https://github.com/mateuszdrwal/challtools" }
dynamic = ["version"]
[tool.setuptools_scm]