add minimal structure

This commit is contained in:
acereca 2024-01-05 12:38:46 +01:00
parent 3118d7429f
commit 6e54efc08b
3 changed files with 27 additions and 0 deletions

0
bscan/__init__.py Normal file
View File

6
bscan/main.py Normal file
View File

@ -0,0 +1,6 @@
def main() -> None:
pass
if __name__ == "__main__":
main()

21
pyproject.toml Normal file
View File

@ -0,0 +1,21 @@
[project]
name = "bscan"
version = "0.1.0"
dependencies = []
[project.optional-dependencies]
dev = [
"black",
"mypy",
"ruff",
"pytest"
]
[build-system]
build-backend = 'setuptools.build_meta'
requires = [
'setuptools',
]
[project.scripts]
bscan = "bscan:main/main"