python_pkg_sekeleton/pyproject.toml

25 lines
504 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "increment"
version = "0.1"
description = "it adds one"
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
authors = [
{ name = "Ondrej Hladuvka", email = "mail@hladu.xyz" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://git.hladu.xyz/increment"
[tool.setuptools]
packages = ["increment"]