mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-05-22 10:12:09 +00:00
11 lines
243 B
Python
11 lines
243 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="mydockerinstaller",
|
||
|
version="0.1",
|
||
|
packages=find_packages(),
|
||
|
entry_points={
|
||
|
"console_scripts": ["mydockerinstaller = mydockerinstaller.installer:main"]
|
||
|
},
|
||
|
)
|