-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 999 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 999 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "paststack"
version = "0.1.6"
description = "Opinionated CLI to generate production-ready FastAPI boilerplate with typing and linting."
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"click>=8.1.0",
"pydantic>=2.12.5",
"questionary>=2.1.1",
"rich>=13.0.0",
"typer>=0.24.1",
]
[project.urls]
Repository = "https://github.com/initd-fr/paststack"
[project.scripts]
paststack = "paststack.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
paststack = [
"templates/**/*",
"templates/**/.env.example",
"templates/**/.gitignore",
]
[tool.setuptools.packages.find]
include = ["paststack*"]
[tool.uv]
package = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=8.0.0",
"ruff>=0.15.7",
"twine>=6.0.0",
]