Files
prometheus-immich-exporter/setup.py
Maxence G. de Montauzan ffaeb00e3f tools: uv + Bruno + compose file
Use uv to handle project
Add a Bruno collection to tests API calls
Add a compose.yaml file to run with docker
2025-05-30 15:39:58 +02:00

28 lines
783 B
Python

from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
version = '1.2.1'
setup(
name='prometheus-immich-exporter',
packages=['immich_exporter'],
version=version,
long_description=long_description,
long_description_content_type="text/markdown",
description='Prometheus exporter for immich',
# forked from:
# author='friendlyFriend4000',
# author_email='mailto:127642970+friendlyFriend4000@users.noreply.github.com',
# url='https://github.com/friendlyFriend4000/prometheus-immich-exporter',
keywords=['prometheus', 'immich'],
classifiers=[],
python_requires='>=3',
entry_points={
'console_scripts': [
'immich_exporter=immich_exporter.exporter:main',
]
}
)