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