Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,26 @@ license = "MIT"
license-files = ["LICENSE.md"]
requires-python = ">=3.12"
dependencies = []
# From https://pypi.org/classifiers/
classifiers = [
"License :: OSI Approved :: MIT License",

# Strict typing, checked via mypy
"Typing :: Typed",

# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",

# Indicate who your project is intended for
"Intended Audience :: Developers",
Comment thread
lwjohnst86 marked this conversation as resolved.

# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]

[project.urls]
# TODO: Add URLs relevant to the project.
Expand Down
Loading