-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (53 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (53 loc) · 1.44 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
[project]
name = "mkctf"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["ctf", "framework", "cli"]
description = "MaKe Capture The Flag"
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{ name="koromodako", email="koromodako@gmail.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = [
"pick~=2.0",
"rich~=13.6",
"jinja2~=3.1",
"aiohttp~=3.9",
"humanize~=4.0",
"ruamel.yaml~=0.17",
"python-slugify~=8.0",
]
[project.urls]
"Homepage" = "https://github.com/koromodako/mkctf"
"Repository" = "https://github.com/koromodako/mkctf"
"Bug Tracker" = "https://github.com/koromodako/mkctf/issues"
[project.scripts]
"mkctf-cli" = "mkctf.cli:app"
"mkctf-monitor" = "mkctf.monitor:app"
[build-system]
requires = ["setuptools>=79", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["mkctf", "mkctf.*"]
[tool.setuptools_scm]
version_file = "mkctf/__version__.py"
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.isort]
profile = "black"
line_length = 79