Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
Latest commit
61 lines (56 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (56 loc) · 1.65 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
[project]
name = "create-awesome-python-app"
version = "0.2.12"
description = "Composable scaffolding CLI for production-ready Python apps"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = [
"scaffold",
"scaffolding",
"cookiecutter",
"fastapi",
"django",
"celery",
"typer",
"uv",
"cli",
"project-generator",
"starter",
"boilerplate",
"template",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"create-python-app-core>=0.2.12",
"questionary>=2.1.1",
"rich>=15.0.0",
"typer>=0.27.0",
]
[project.urls]
Homepage = "https://github.com/Create-Python-App/create-python-app"
Repository = "https://github.com/Create-Python-App/create-python-app"
Issues = "https://github.com/Create-Python-App/create-python-app/issues"
Changelog = "https://github.com/Create-Python-App/create-python-app/blob/main/CHANGELOG.md"
[project.scripts]
create-awesome-python-app = "create_awesome_python_app.cli:main"
[tool.uv.sources]
create-python-app-core = { workspace = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/create_awesome_python_app"]