-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.07 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
[tool.poetry]
name = "tomodo"
version = "1.3.1"
description = "A CLI for managing MongoDB deployments on Docker"
authors = ["Yuval Herziger <yuvalhrz@gmail.com>"]
readme = "README.md"
homepage = "https://tomodo.dev"
repository = "https://github.com/yuvalherziger/tomodo"
packages = [{ include = "tomodo" }]
license = "MIT"
keywords = ["mongodb", "docker", "upgrade", "python", "cli"]
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
docker = "^7.0.0"
typer = { extras = ["all"], version = "^0.9.0" }
ruamel-yaml = "^0.17.32"
unique-names-generator = "^1.0.2"
requests = "^2.31.0"
pymongo = "^4.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
pyinstaller = "^6.3.0"
[build-system]
requires = ["poetry-core>=1.5.1"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tomodo = "tomodo.cmd:run"
build-amd64 = "scripts.packager:install_amd64"
build-arm64 = "scripts.packager:install_arm64"
ci-unit-tests = "scripts.test_runner:ci"
local-unit-tests = "scripts.test_runner:local"
load-tags = "tomodo.common.tag_manager:load_tags"