🎉 Initial commit
This commit is contained in:
commit
b2822e4541
10 changed files with 1046 additions and 0 deletions
33
pyproject.toml
Normal file
33
pyproject.toml
Normal 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",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue