commit 02113d6d4b265133b1b561f82a0d55ff483fbaac Author: Gustavo Henrique Santos Souza de Miranda Date: Wed Sep 3 00:53:27 2025 -0300 Initialize `pilgrim PDF export` module with basic structure, CLI entry point, and configuration files. 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..b2a32db --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,28 @@ +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[project] +name = "epstein" +version = "0.0.1" +authors = [ + { name="Gustavo Henrique Santos Souza de Miranda", email="gustavohssmiranda@gmail.com" } +] +description = "Pilgrim's Travel Log PDF export module" +readme = "README.md" +requires-python = ">=3.10" +classifiers = [ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", +] +dependencies = [ + +] + +[project.urls] +Homepage = "https://github.com/gmbrax/Pilgrim/" +Issues = "https://github.com/gmbrax/Pilgrim/issues" + +[project.scripts] +pilgrim = "epstein.command:main" \ No newline at end of file diff --git a/src/epstein/__init__.py b/src/epstein/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/epstein/application.py b/src/epstein/application.py new file mode 100644 index 0000000..e69de29 diff --git a/src/epstein/command.py b/src/epstein/command.py new file mode 100644 index 0000000..afee10b --- /dev/null +++ b/src/epstein/command.py @@ -0,0 +1,7 @@ +from epstein.application import * + +def main(): + print("hello world") + +if __name__ =="__main__": + main()