-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
35 lines (30 loc) · 951 Bytes
/
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
[tool.poetry]
name = "balto"
version = "0.3.0"
description = "BAlto is a Language independent Test Orchestrator"
license = "MIT"
authors = ["Boris Feld <[email protected]>"]
packages = [
{include = "balto/**/*.py"}
]
readme = "README.md"
homepage = "https://lothiraldan.github.io/balto/"
repository = "https://github.com/Lothiraldan/balto"
include = ["balto/web_interfaces/balto_react/build/**/*"]
exclude = ["balto/web_interfaces/balto_react/node_modules/**/*", "balto/web_interfaces/simple/src/elm-stuff/**/*"]
[tool.poetry.dependencies]
python = "^3.7 || ^3.8 || ^3.9"
aiodocker = "^0.19.1"
docker = "^4.4.1"
tomlkit = "^0.7.0"
fastapi = "^0.68.1"
aiofiles = "^0.7.0"
uvicorn = {extras = ["standard"], version = "^0.15.0"}
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[tool.poetry.scripts]
balto = "balto.cli:main"
balto-server = "balto.server:main"
[build-system]
requires = ["poetry>=0.12.17"]
build-backend = "poetry.masonry.api"