26 lines
761 B
TOML
26 lines
761 B
TOML
[build-system]
|
|
requires = ['setuptools', "wheel", "setuptools-git-versioning"]
|
|
build-backend = 'setuptools.build_meta'
|
|
|
|
[tool.setuptools-git-versioning]
|
|
enabled = true
|
|
|
|
[project]
|
|
dynamic = ['version']
|
|
name = "shs-tools"
|
|
authors = [
|
|
{ name="Stefan Harmuth", email="pennywise@drock.de" },
|
|
]
|
|
description = "An assortment of little helper functions"
|
|
readme = "README.md"
|
|
requires-python = ">=3.6"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"Development Status :: 4 - Beta",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"homepage" = "https://git.domainforge.de/public/py-tools"
|
|
"Bug Tracker" = "https://git.domainforge.de/public/py-tools/issues" |