text-generation-inference/dockerinstaller/setup.py

11 lines
243 B
Python
Raw Normal View History

2024-04-29 16:36:53 +00:00
from setuptools import setup, find_packages
setup(
name="mydockerinstaller",
version="0.1",
packages=find_packages(),
entry_points={
"console_scripts": ["mydockerinstaller = mydockerinstaller.installer:main"]
},
)