-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
44 lines (36 loc) · 1.14 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
[tool.poetry]
name = "frappe-manager"
version = "0.16.0"
license = "MIT"
repository = "https://github.com/rtcamp/frappe-manager"
description = "A CLI tool based on Docker Compose to easily manage Frappe based projects. As of now, only suitable for development in local machines running on Mac and Linux based OS."
authors = ["rtCamp <[email protected]>"]
maintainers = ["Alok Singh <[email protected]>"]
documentation = "https://github.com/rtcamp/frappe-manager/wiki"
readme = "README.md"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.ruff]
ignore = ["F841"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rtcamp/frappe-manager/issues"
[tool.poetry.scripts]
fm = "frappe_manager.main:cli_entrypoint"
[tool.poetry.dependencies]
python = "^3.10"
typer = {extras = ["all"], version = "^0.9.0"}
requests = "^2.31.0"
psutil = "^5.9.6"
ruamel-yaml = "^0.18.5"
tomlkit = "^0.12.3"
certbot = "^2.9.0"
pydantic = "^2.6.4"
email-validator = "^2.1.1"
jinja2 = "^3.1.3"
certbot-dns-cloudflare = "^2.10.0"
[tool.pyright]
reportOptionalMemberAccess = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"