-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (45 loc) · 1.22 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
[tool.poetry]
name = "code-ingest"
version = "0.7.0"
description = "This runs code in a time-limited, offline docker container and returns the results."
authors = ["RACTF Contributors"]
license = "AGPL-3.0-only"
readme = "README.md"
repository = "https://github.com/ractf/code-ingest"
homepage = "https://github.com/ractf/code-ingest"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Environment :: Web Environment",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Topic :: Software Development",
"Intended Audience :: Education"
]
include = [
"docker-build/*",
"setup-code/*",
"tests/*"
]
[tool.poetry.dependencies]
python = "^3.8"
starlette = "*"
uvicorn = "*"
docker = "*"
[tool.poetry.dev-dependencies]
flake8 = "*"
flake8-bandit = "*"
flake8-bugbear = "*"
flake8-import-order = "*"
flake8-string-format = "*"
flake8-tidy-imports = "*"
flake8-todo = "*"
mypy = "*"
requests = "*"
[tool.poetry.scripts]
ingest_server = "code_ingest.__main__:main"
ingest_tests = "tests.functionality_check:run_tests"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"