|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 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 | + "Operating System :: OS Independent", |
| 21 | + "Programming Language :: Python", |
| 22 | + "Programming Language :: Python :: 3", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 28 | +] |
7 | 29 | dependencies = [ |
8 | 30 | "copier>=9.11.0", |
9 | 31 | ] |
10 | 32 |
|
| 33 | +[project.urls] |
| 34 | +Homepage = "https://github.com/patryk-gpl/copier-python-uv" |
| 35 | +Repository = "https://github.com/patryk-gpl/copier-python-uv.git" |
| 36 | +"Bug Tracker" = "https://github.com/patryk-gpl/copier-python-uv/issues" |
| 37 | + |
11 | 38 | [dependency-groups] |
12 | 39 | dev = [ |
13 | 40 | "pytest>=9.0.2", |
14 | 41 | "pytest-cov>=7.0.0", |
15 | 42 | ] |
| 43 | + |
| 44 | +[tool.pytest.ini_options] |
| 45 | +testpaths = ["tests"] |
| 46 | +addopts = "--durations=5 --durations-min=0.0 --tb=short" |
| 47 | +filterwarnings = [ |
| 48 | + "ignore:Dirty template changes included automatically:copier._vcs.DirtyLocalWarning", |
| 49 | +] |
0 commit comments