[main] Git stuff

This commit is contained in:
2024-12-09 18:31:01 +01:00
parent 61e0c670c6
commit 9764bb4c63
11 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
from setuptools import setup
setup(
name="project-installer", # Name of your package
version="0.1.0", # Version of your package
description="Project Installer Tool", # Short description
py_modules=["project_installer"], # Module(s) to include (no .py extension)
install_requires=["pystache"], # List of dependencies
entry_points={
"console_scripts": [
"project-installer=project_installer:main", # Entry point
],
},
)