forked from aws-exporters/ecr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.5 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.5 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
43
44
45
46
47
48
49
50
# ecr_exporter
# ---------------
# A Prometheus exporter for AWS ECR
#
# Author: Tim Birkett <tim.birkettdev@devopsmakers.com>
# Website: https://github.com/aws-exporters/ecr
# License: MIT License (see LICENSE file)
import codecs
from setuptools import find_packages, setup
dependencies = [
"boto3==1.26.45",
"prometheus-client==0.15.0",
"cachetools==5.2.1",
"python-json-logger==2.0.4",
]
setup(
name="ecr_exporter",
version="0.1.4",
url="https://github.com/aws-exporters/ecr",
license="MIT",
author="Tim Birkett",
author_email="tim.birkett@devopsmakers.com",
description="A Prometheus exporter for AWS ECR",
long_description=codecs.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
platforms="any",
install_requires=dependencies,
entry_points={
"console_scripts": [
"ecr_exporter = ecr_exporter.server:run",
],
},
classifiers=[
# As from http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Topic :: System :: Monitoring",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
],
)