Initial commit

This commit is contained in:
David Doblas Jiménez 2024-02-10 18:35:25 +01:00
parent 7c7ae8de09
commit f4e06a991c
3 changed files with 14 additions and 0 deletions

2
.gitignore vendored
View File

@ -0,0 +1,2 @@
__pycache__
*.egg-info/

View File

@ -0,0 +1,10 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name="ugit",
version="1.0",
packages=["ugit"],
entry_points={"console_scripts": ["ugit = ugit.cli:main"]},
)

View File

@ -0,0 +1,2 @@
def main():
print("Hello, World!")