forked from plone/guillotina_prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.09 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
from setuptools import find_packages
from setuptools import setup
try:
README = open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read()
except IOError:
README = None
setup(
name='guillotina_prometheus',
version=open('VERSION').read().strip(),
description='prometheus integration into guillotina',
long_description=README,
install_requires=[
'guillotina>=6.0.0a6',
'prometheus_client==0.7.1'
],
author='Nathan Van Gheem',
author_email='[email protected]',
url='https://github.com/guillotinaweb/guillotina_prometheus',
packages=find_packages(exclude=['demo']),
include_package_data=True,
tests_require=[
'pytest',
],
extras_require={
'test': [
'pytest'
]
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
license="BSD",
entry_points={
}
)