Initialize `pilgrim PDF export` module with basic structure, CLI entry point, and configuration files.
This commit is contained in:
commit
02113d6d4b
|
|
@ -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"
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
from epstein.application import *
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print("hello world")
|
||||||
|
|
||||||
|
if __name__ =="__main__":
|
||||||
|
main()
|
||||||
Loading…
Reference in New Issue