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
47 lines (44 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (44 loc) · 1.27 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
[project]
name = "create-python-app-core"
version = "0.2.12"
description = "Scaffolding engine for Create Awesome Python App"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
keywords = [
"scaffold",
"scaffolding",
"scaffolding-engine",
"template",
"jinja2",
"project-generator",
"starter",
"boilerplate",
]
classifiers = [
"Development Status :: 4 - Beta",
"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",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.28.1",
"jinja2>=3.1.0",
"packaging>=24.0",
"tomlkit>=0.13.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"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/create_python_app_core"]