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", "icecream",
] ]
[project.scripts] [project.entry_points]
pytest11 = "pytest_abra:pytest_abra" pytest11 = [
"pytest_abra = pytest_abra.pytest_abra",
]
[tool.setuptools] [project.scripts]
package-dir = {"" = ""} abrademo = "pytest_abra:demo"
[build-system] [build-system]
requires = ["hatchling"] requires = ["hatchling"]
build-backend = "hatchling.build" build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"pytest_abra/*.py",
]
exclude = [
"*.json",
]
[tool.ruff] [tool.ruff]
line-length = 120 line-length = 120
target-version = "py311" target-version = "py311"

1
pytest_abra/demo.py Normal file
View file

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