installable package #9
2 changed files with 16 additions and 4 deletions
|
|
@ -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
1
pytest_abra/demo.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
print("wooooorking")
|
||||||
Loading…
Add table
Add a link
Reference in a new issue