forked from Supervisor/supervisor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
109 lines (100 loc) · 3.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
##############################################################################
#
# Copyright (c) 2006-2015 Agendaless Consulting and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the BSD-like license at
# http://www.repoze.org/LICENSE.txt. A copy of the license should accompany
# this distribution. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
# EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
# FITNESS FOR A PARTICULAR PURPOSE
#
##############################################################################
import os
import sys
py_version = sys.version_info[:2]
if py_version < (2, 7):
raise RuntimeError('On Python 2, Supervisor requires Python 2.7 or later')
elif (3, 0) < py_version < (3, 4):
raise RuntimeError('On Python 3, Supervisor requires Python 3.4 or later')
# setuptools is required as a runtime dependency only on
# Python < 3.8. See the comments in supervisor/compat.py.
requires = [
"setuptools; python_version < '3.8'",
]
tests_require = []
testing_extras = tests_require + [
'pytest',
'pytest-cov',
]
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(here, 'README.rst'), 'r') as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst'), 'r') as f:
CHANGES = f.read()
except Exception:
README = """\
Supervisor is a client/server system that allows its users to
control a number of processes on UNIX-like operating systems. """
CHANGES = ''
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: System Administrators',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: System :: Boot',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
version_txt = os.path.join(here, 'supervisor/version.txt')
with open(version_txt, 'r') as f:
supervisor_version = f.read().strip()
dist = setup(
name='supervisor',
version=supervisor_version,
license='BSD-derived (http://www.repoze.org/LICENSE.txt)',
url='http://supervisord.org/',
project_urls={
'Changelog': 'http://supervisord.org/changelog',
'Documentation': 'http://supervisord.org',
'Issue Tracker': 'https://github.com/Supervisor/supervisor',
},
description="A system for controlling process state under UNIX",
long_description=README + '\n\n' + CHANGES,
classifiers=CLASSIFIERS,
author="Chris McDonough",
author_email="[email protected]",
packages=find_packages(),
install_requires=requires,
extras_require={
'testing': testing_extras,
},
tests_require=tests_require,
include_package_data=True,
zip_safe=False,
test_suite="supervisor.tests",
entry_points={
'console_scripts': [
'supervisord = supervisor.supervisord:main',
'supervisorctl = supervisor.supervisorctl:main',
'echo_supervisord_conf = supervisor.confecho:main',
'pidproxy = supervisor.pidproxy:main',
],
},
)