commit 59a3d572bb080a36202ae280b818e03df96a9023 Author: WorldTeacher Date: Fri Oct 10 10:38:20 2025 +0200 add structure diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..481b06f --- /dev/null +++ b/pyproject.toml @@ -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" diff --git a/src/bibapi/__init__.py b/src/bibapi/__init__.py new file mode 100644 index 0000000..a58bf25 --- /dev/null +++ b/src/bibapi/__init__.py @@ -0,0 +1,2 @@ +def hello() -> str: + return "Hello from bibapi!" diff --git a/src/bibapi/py.typed b/src/bibapi/py.typed new file mode 100644 index 0000000..e69de29