-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
54 lines (47 loc) · 1.26 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
[tool.poetry]
name = "rcds"
version = "0.1.4"
description = "An automated CTF challenge deployment tool"
readme = "README.rst"
authors = ["redpwn <[email protected]>"]
homepage = "https://rcds.redpwn.net"
repository = "https://github.com/redpwn/rCDS"
license = "BSD-3-Clause"
packages = [
{ include = "rcds" },
]
[tool.poetry.scripts]
rcds = "rcds.cli:cli"
[tool.poetry.dependencies]
python = "^3.6"
pyyaml = "^5.3.1"
pathspec = "^0.8.1"
docker = "^4.3.1"
jsonschema = "^3.2.0"
dataclasses = { version = ">=0.7,<0.9", python = "~3.6" }
Jinja2 = ">=2.11.2,<4.0.0"
kubernetes = "^12.0.0"
requests = "^2.24.0"
requests-toolbelt = "^0.9.1"
click = "^7.1.2"
# Docs build dependencies
sphinx = { version = "^3.3.0", optional = true }
sphinx_rtd_theme = { version = "^0.5.0", optional = true }
sphinx-jsonschema = { version = "^1.15", optional = true }
[tool.poetry.dev-dependencies]
pre-commit = { version = "^2.12.1", python = "^3.6.1" }
black = "^20.8b1"
pytest = "^6.2.3"
coverage = "^5.5"
mypy = "^0.812"
flake8 = "^3.9.0"
flake8-bugbear = "^21.4.3"
pytest-datadir = "^1.3.1"
isort = "^5.8.0"
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme", "sphinx-jsonschema"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"