forked from tiagocoutinho/multivisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (60 loc) · 2.28 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import sys
from setuptools import setup, find_packages
supervisor = "supervisor-win" if "win" in sys.platform else "supervisor"
extras = {
"rpc": ["zerorpc", supervisor],
"web": ["flask", "werkzeug", "blinker", "zerorpc", supervisor],
"cli": ["maya", "requests", "prompt_toolkit>=2", "blinker"],
}
extras["all"] = list(set.union(*(set(i) for i in extras.values())))
requires = ["six", "gevent>=1.3"]
with open("README.md") as readme_file:
readme = readme_file.read()
setup(
name="multivisor",
version="6.0.0",
author="Tiago Coutinho",
author_email="[email protected]",
description="A centralized supervisor UI (web & CLI)",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={
"multivisor.server": ["dist/*", "dist/static/css/*", "dist/static/js/*"]
},
entry_points=dict(
console_scripts=[
"multivisor=multivisor.server.web:main [web]",
"multivisor-rpc=multivisor.server.rpc:main [rpc]",
"multivisor-cli=multivisor.client.cli:main [cli]"
]
),
extras_require=extras,
install_requires=requires,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: System :: Boot",
"Topic :: System :: Monitoring",
"Topic :: System :: Systems Administration",
],
license="GNU General Public License v3",
)