-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 980 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
36
37
38
39
40
[tool.poetry]
name = "wemulate-api"
version = "2.0.2"
description = "API for the modern WAN Emulator (WEmulate)"
authors = ["Julian Klaiber <julian.klaiber@ost.ch>", "Severin Dellsperger <severin.dellsperger@ost.ch>"]
license = "GNU General Public License v3.0"
readme = "README.md"
homepage = "https://wemulate.github.io/wemulate"
documentation = "https://wemulate.github.io/wemulate"
repository = "https://github.io/wemulate/wemulate"
packages = [
{ include = "api" },
]
[tool.poetry.scripts]
wemulate-api = "api.app:main"
[tool.poetry.dependencies]
python = "^3.8"
aniso8601 = "9.0.1"
attrs = "21.4.0"
click = "8.1.3"
itsdangerous = "2.1.2"
Jinja2 = "3.1.2"
jsonschema = "4.7.2"
MarkupSafe = "2.1.1"
pyrsistent = "0.18.1"
pytz = "2022.1"
six = "1.16.0"
Werkzeug = "2.1.2"
fastapi = "0.70.0"
uvicorn = "0.15.0"
wemulate = "^2.0.4"
[tool.poetry.dev-dependencies]
black = "22.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"