mirror of
https://git.nolog.cz/NoLog.cz/nginx-configurator.git
synced 2025-01-31 03:43:35 +01:00
18 lines
285 B
Python
18 lines
285 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name='ncc',
|
||
|
version='1.0.0',
|
||
|
py_modules=['ncc'],
|
||
|
install_requires=[
|
||
|
'click',
|
||
|
'sysrsync',
|
||
|
'pyyaml',
|
||
|
],
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'ncc = ncc.main:cli',
|
||
|
],
|
||
|
},
|
||
|
)
|