-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (61 loc) · 1.68 KB
/
pyproject.toml
File metadata and controls
72 lines (61 loc) · 1.68 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "envctl"
version = "1.6.9"
description = "CLI for bringing up full local environments across a main repository and many worktrees."
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12,<3.15"
authors = [
{name = "envctl maintainers"},
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"prompt_toolkit>=3.0",
"psutil>=5.9",
"rich>=13.7",
"textual>=0.58",
]
[project.optional-dependencies]
dev = [
"basedpyright>=1.31",
"build>=1.2",
"pytest>=8.0",
"ruff>=0.8",
"vulture>=2.11",
]
[project.scripts]
envctl = "envctl_engine.runtime.cli:main"
[project.urls]
Documentation = "https://github.com/kfiramar/envctl"
Repository = "https://github.com/kfiramar/envctl"
[tool.setuptools]
package-dir = {"" = "python"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["python"]
include = ["envctl_engine*"]
[tool.setuptools.package-data]
envctl_engine = [
"assets/dependency_compose/*/*.yml",
"assets/dependency_compose/*/*.yaml",
"assets/dependency_compose/*/*/*.sql",
"runtime/prompt_templates/*.md",
"test_output/*.mjs",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
norecursedirs = ["trees", "build", "dist", ".venv", ".git"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
extend-select = ["E", "F"]
[tool.ruff.lint.per-file-ignores]
"tests/python/**/*.py" = ["E402", "E501"]
"scripts/*.py" = ["E402"]
"python/envctl_engine/state/models.py" = ["F811"]
"python/envctl_engine/runtime_feature_inventory.py" = ["E501"]
"python/envctl_engine/debug/debug_bundle_diagnostics.py" = ["E501"]