|
| 1 | +[build-system] |
| 2 | +requires = ["hatchling"] |
| 3 | +build-backend = "hatchling.build" |
| 4 | + |
1 | 5 | [project] |
2 | 6 | name = "copier-python-uv" |
3 | 7 | version = "0.1.0" |
4 | 8 | description = "Copier template to bootstrap a Python package with uv and basic configuration" |
5 | 9 | readme = "README.md" |
6 | 10 | requires-python = ">=3.10" |
| 11 | +license = "MIT" |
| 12 | +license-files = ["LICENSE"] |
| 13 | +authors = [ |
| 14 | + {name = "Patryk Kubiak", email = "8299306+kpatryk@users.noreply.github.com"} |
| 15 | +] |
| 16 | +keywords = ["copier", "template", "python", "uv", "packaging"] |
| 17 | +classifiers = [ |
| 18 | + "Development Status :: 4 - Beta", |
| 19 | + "Intended Audience :: Developers", |
| 20 | + "License :: OSI Approved :: MIT License", |
| 21 | + "Operating System :: OS Independent", |
| 22 | + "Programming Language :: Python", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: 3.12", |
| 27 | + "Programming Language :: Python :: 3.13", |
| 28 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 29 | +] |
7 | 30 | dependencies = [ |
8 | 31 | "copier>=9.11.0", |
9 | 32 | ] |
10 | 33 |
|
| 34 | +[project.urls] |
| 35 | +Homepage = "https://github.com/patryk-gpl/copier-python-uv" |
| 36 | +Repository = "https://github.com/patryk-gpl/copier-python-uv.git" |
| 37 | +"Bug Tracker" = "https://github.com/patryk-gpl/copier-python-uv/issues" |
| 38 | + |
11 | 39 | [dependency-groups] |
12 | 40 | dev = [ |
13 | 41 | "pytest>=9.0.2", |
|
0 commit comments