-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
36 lines (32 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
from setuptools import setup
from scripts.release import get_version
setup(
name='sanic-prometheus',
version=f'{get_version()}',
description='Exposes Prometheus monitoring metrics of Sanic apps.',
url='http://github.com/dkruchinin/sanic-prometheus',
author='Dan Kruchinin',
author_email='[email protected]',
license='MIT',
packages=['sanic_prometheus'],
zip_safe=False,
platforms='any',
install_requires=[
'sanic>=18.12',
'prometheus-client~=0.7.1',
'psutil>=5.2.0'
],
classifiers=[
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Topic :: System :: Monitoring',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
keywords='sanic prometheus monitoring'
)