forked from ticket-vision/platform-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (73 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (73 loc) · 2.02 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
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["uv_build>=0.11.28,<0.12"]
build-backend = "uv_build"
[project]
name = "platform-forge"
version = "0.3.0"
description = "Deterministic scaffolding for modern Python platform architectures."
readme = "README.md"
requires-python = ">=3.13"
license = "MIT"
authors = [
{ name = "Platform Forge Contributors" },
]
keywords = ["scaffolding", "cookiecutter", "platform-engineering", "fastapi", "typer"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"cookiecutter>=2.6.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"rich>=13.9.0",
"typer>=0.15.0",
]
[project.optional-dependencies]
ai = ["pydantic-ai>=1.0.0"]
docs = ["mkdocs>=1.6.0", "mkdocs-material>=9.5.0"]
dev = [
"mypy>=1.14.0",
"pytest>=8.3.0",
"pytest-cov>=6.0.0",
"ruff>=0.8.0",
]
[project.scripts]
platform-forge = "platform_forge.cli:app"
[project.urls]
Documentation = "https://github.com/dillon-barendt/platform-forge#readme"
Issues = "https://github.com/dillon-barendt/platform-forge/issues"
Source = "https://github.com/dillon-barendt/platform-forge"
[tool.ruff]
line-length = 100
target-version = "py313"
exclude = [".venv", "outputs", "src/platform_forge/templates/cookiecutters", "work"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
[tool.mypy]
python_version = "3.13"
strict = true
warn_unreachable = true
warn_unused_ignores = true
packages = ["platform_forge"]
exclude = ["src/platform_forge/templates/cookiecutters"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[dependency-groups]
dev = [
"mypy>=2.2.0",
"pytest>=9.1.1",
"ruff>=0.15.21",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-git-revision-date-localized-plugin>=1.5.3",
"mkdocs-material>=9.7.6",
"mkdocs-mermaid2-plugin>=1.2.3",
"mkdocs-minify-plugin>=0.8.0",
]