This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
46 lines (41 loc) · 1.52 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
from __future__ import unicode_literals, print_function
from codecs import open
from os.path import dirname, join
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import newrelic_marklogic_plugin
def read(fname):
return open(join(dirname(__file__), fname)).read()
def main():
setup(
name='newrelic_marklogic_plugin',
description='New Relic plugin for monitoring MarkLogic.',
long_description=read('README.rst'),
long_description_content_type='text/x-rst',
version=newrelic_marklogic_plugin.__version__,
packages=find_packages(),
url='https://github.com/marklogic-community/newrelic-plugin',
license='Apache License 2.0',
author='James Fuller',
author_email='[email protected]',
classifiers=['Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Natural Language :: English',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
scripts=[
'scripts/newrelic_marklogic.py'
],
platforms='any',
install_requires=[
'requests>=2.11.1'
]
)
if __name__ == '__main__':
main()