-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (44 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
56 lines (44 loc) · 1.8 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
48
49
50
51
52
53
54
55
56
[build-system]
# minimum system requirements for the build system
requires = ["setuptools >= 80.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# project metadata to be used and parsed by most backends
name = "pkg-name"
# dynamic tagging for example of version from __version__ attribute
# can be rendered easly, but first we need to define it as dynamic
dynamic = ["version"]
# set a list of authors for the project
authors = [
{name = "Debmalya Pramanik (ZenithClown)", email = "dpramanik.official@gmail.com"}
]
# readme and project descriptions
readme = "README.md"
description = "A template repository to start building a Python package."
# python minimum version requirement, must be compatible
requires-python = ">= 3.10"
# license file, directly change the file to reflect changes
license = {file = "LICENSE"}
# classifiers for the python package
# full classifiers list - https://pypi.org/classifiers/
classifiers = [
# maturity/development status of the project
"Development Status :: 4 - Beta",
# license information can also be added as a classifier
"License :: OSI Approved :: MIT License",
# supported operating systems/os independent
"Operating System :: OS Independent",
# list of supported python versions
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
[project.urls]
# a list of associated URLs that is displayed on the left sidebar
# https://packaging.python.org/en/latest/specifications/well-known-project-urls/#well-known-labels
homepage = "http://zenithclown.github.io/"
sourcecode = "https://github.com/ZenithClown/python-git-template"
[tool.setuptools.dynamic]
version = {attr = "pkg-name.__version__"}