void-service-control/setup.py

19 lines
555 B
Python
Raw Normal View History

2024-03-25 04:14:53 +00:00
from setuptools import setup
setup(
name='VoidServiceControl',
2024-03-27 20:57:04 +00:00
version='0.2.1',
2024-03-25 04:14:53 +00:00
url='https://git.orudo.ru/trueold89/void-service-control',
author='trueold89',
author_email='trueold89@orudo.ru',
description="A simple script that will allow you to manage runit services in Void Linux",
packages=['VoidServiceControl'],
long_description=open('README.md').read(),
entry_points={
"console_scripts": ["vsc = VoidServiceControl.main:main"]
},
package_data={
'VoidServiceControl': ['*.json'],
},
)