🎉 Initial commit

This commit is contained in:
Neill Cox 2023-10-22 16:21:00 +11:00
commit b2822e4541
10 changed files with 1046 additions and 0 deletions

33
pyproject.toml Normal file
View file

@ -0,0 +1,33 @@
[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",
]