diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..0854c73 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[project] +name = "pytfm" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +authors = [ + { name = "Sergey Vanyushkin", email = "pi3c@yandex.ru" } +] +requires-python = ">=3.13" +dependencies = [] + +[project.scripts] +pytfm = "pytfm:main" + +[build-system] +requires = ["uv_build>=0.10.7,<0.11.0"] +build-backend = "uv_build" diff --git a/src/pytfm/__init__.py b/src/pytfm/__init__.py new file mode 100644 index 0000000..802a1e0 --- /dev/null +++ b/src/pytfm/__init__.py @@ -0,0 +1,2 @@ +def main() -> None: + print("Hello from pytfm!")