forked from VladVolchkov/prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.2 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.2 KB
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
# coding: utf-8
from setuptools import setup, find_packages
INSTALL_REQUIRES = [
'thumbor==7.*,>=7.0.6',
'prometheus_client==0.*,>=0.14.1',
]
setup(
name='tc_prometheus',
version="2.0.0",
description='Thumbor Prometheus metrics extension',
author='Simon Effenberg',
author_email='savar@schuldeigen.de',
url='https://github.com/thumbor-community/prometheus',
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
extras_require={
"all": INSTALL_REQUIRES,
"tests": INSTALL_REQUIRES + [
'preggy==1.*,>=1.4.4',
'pytest==7.*,>=7.0.0',
'pytest-cov==3.*,>=3.0.0',
],
},
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
long_description="""
Prometheus metrics extension enables thumbor to expose a scrape endpoint prometheus can scrape from.
"""
)