Initial commit

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

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"]},
)