installable package #9

Merged
dan merged 31 commits from installable into dev 2023-12-07 11:32:03 +01:00
2 changed files with 16 additions and 4 deletions
Showing only changes of commit a23a9810dd - Show all commits

View file

@ -25,16 +25,27 @@ dependencies = [
"icecream",
]
[project.scripts]
pytest11 = "pytest_abra:pytest_abra"
[project.entry_points]
pytest11 = [
"pytest_abra = pytest_abra.pytest_abra",
]
[tool.setuptools]
package-dir = {"" = ""}
[project.scripts]
abrademo = "pytest_abra:demo"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"pytest_abra/*.py",
]
exclude = [
"*.json",
]
[tool.ruff]
line-length = 120
target-version = "py311"

1
pytest_abra/demo.py Normal file
View file

@ -0,0 +1 @@
print("wooooorking")