-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 862 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 862 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "apigen_copier"
version = "0.3.3-dev15"
description = "Python API Generator using Copier"
readme = "README.md"
requires-python = ">=3.13"
authors = [
{ name = "CloudAppi" }
]
dependencies = [
"copier~=9.11.0",
"pyyaml~=6.0.2",
"jinja2~=3.1.6",
"pydantic~=2.10.0"
]
[dependency-groups]
dev = [
"pytest==9.0.2",
"httpx==0.28.1",
"fastapi==0.128.0",
"uvicorn==0.40.0",
"sqlalchemy==2.0.45",
"pydantic-settings==2.12.0",
"aiosqlite==0.22.1",
"greenlet==3.3.0",
"pytest-cov==7.0.0",
]
[tool.pytest.ini_options]
pythonpath = "src"
testpaths = ["tests"]
norecursedirs = ["docs"]
[project.scripts]
apigen-copier = "apigen_copier.core:generate_project"
[tool.hatch.build.targets.wheel]
packages = ["src/apigen_copier"]