gitea-gitlab-exporter/pyproject.toml
2023-10-22 16:21:00 +11:00

33 lines
808 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_skeleton"
version = "0.0.1"
authors = [
{ name="Neill Cox", email="neill@ingenious.com.au" },
]
description = "A skeleton for a python project"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
]
[project.urls]
"Homepage" = "https://git.evatt.ingenious.com.au/neillc/python_skeleton"
"Bug Tracker" = "https://git.evatt.ingenious.com.au/neillc/python_skeleton"
[project.scripts]
hello_world = "python_skeleton:hello_world"
[tool.pytest.ini_options]
addopts = "-v --cov-report term-missing --cov=python_skeleton"
testpaths = [
"tests",
]