[main] Git stuff
This commit is contained in:
14
.gitea/installers/renders/setup.py
Normal file
14
.gitea/installers/renders/setup.py
Normal 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
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user