-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 846 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name='supervisor-shell-ui',
version='v0.3.0',
author='Ciprian Mandache',
author_email='psyb0t@51k.eu',
description='A CLI alternative to the built-in web interface of Supervisor, offering a more convenient way to manage processes directly from the terminal.',
long_description=long_description,
long_description_content_type="text/markdown",
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'urllib3==1.26.16',
'requests==2.31.0',
'requests-unixsocket==0.3.0',
],
entry_points={
'console_scripts': [
'supervisor-shell-ui=supervisor_shell_ui.main:main',
],
},
license='GPL-3.0',
)