Files
2024-12-09 18:31:01 +01:00

15 lines
513 B
Python

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