add structure

This commit is contained in:
2025-10-10 10:38:20 +02:00
commit 59a3d572bb
5 changed files with 17 additions and 0 deletions

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.13

0
README.md Normal file
View File

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "bibapi"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "WorldTeacher", email = "coding_contact@pm.me" }
]
requires-python = ">=3.13"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

2
src/bibapi/__init__.py Normal file
View File

@@ -0,0 +1,2 @@
def hello() -> str:
return "Hello from bibapi!"

0
src/bibapi/py.typed Normal file
View File