-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 845 Bytes
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
[project]
name = "ctfbox"
version = "1.12.5"
description = "A box for CTF challenges with some sugar functions, Just enjoy it"
authors = [
{name="Syclover"},
{name="Longlone", email="toloveu29@gmail.com"},
{name="pjx", email="pjx3231@163.com"},
{name="lingze", email="lingze.wl@gmail.com"},
{name="F4ded", email="452584023@qq.com"},
{name="AFKL", email="afkl1919@qq.com"}
]
dependencies = [
"requests<3.0.0,>=2.25.1",
"PyJWT<3.0.0,>=2.0.1"]
requires-python = ">=3.7"
license = {text = "MIT"}
readme = "README.md"
[project.urls]
homepage = "https://github.com/WAY29/ctfbox"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"icecream<3.0.0,>=2.0.0",
]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool.pdm.scripts]
publish = {shell = "pdm build && twine upload dist/*"}