We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
pyproject.toml
1 parent 4e3933c commit fd37f23Copy full SHA for fd37f23
1 file changed
template/pyproject.toml.jinja
@@ -16,6 +16,26 @@ license = "MIT"
16
license-files = ["LICENSE.md"]
17
requires-python = ">=3.12"
18
dependencies = []
19
+# From https://pypi.org/classifiers/
20
+classifiers = [
21
+ "License :: OSI Approved :: MIT License",
22
+
23
+ # Strict typing, checked via mypy
24
+ "Typing :: Typed",
25
26
+ # How mature is this project? Common values are
27
+ # 3 - Alpha
28
+ # 4 - Beta
29
+ # 5 - Production/Stable
30
+ "Development Status :: 4 - Beta",
31
32
+ # Indicate who your project is intended for
33
+ "Intended Audience :: Developers",
34
35
+ # Specify the Python versions you support here.
36
+ "Programming Language :: Python :: 3",
37
+ "Programming Language :: Python :: 3.12",
38
+]
39
40
[project.urls]
41
# TODO: Add URLs relevant to the project.
0 commit comments