-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
32 lines (28 loc) · 999 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
28
29
30
31
32
from distutils.core import setup
version = '1.1.0'
setup(
name = 'supervisor_newrelic',
version = version,
description = 'Collection of Supervisor plugins to provide metrics and monitoring within New Relic',
author = 'Sportlobster',
author_email = 'info@sportlobster.com',
license = 'MIT',
url = 'https://github.com/sportlobster/supervisor-newrelic',
download_url = 'https://github.com/sportlobster/supervisor-newrelic/tarball/%s' % version,
long_description = open('README.rst').read(),
keywords = ['supervisor', 'supervisord', 'newrelic', 'monitoring'],
classifiers = [],
install_requires = [
'requests>=2.4.2',
'setuptools>=38.0.0',
'supervisor>=3.3.3',
],
tests_require = ['nose', 'mock'],
test_suite = 'nose.collector',
packages = ['supervisor_newrelic'],
entry_points = {
'console_scripts': {
'supervisor_newrelic_status = supervisor_newrelic.status:main',
},
},
)