restic_exporter/setup.py

15 lines
434 B
Python
Raw Normal View History

2022-12-26 13:51:27 +01:00
import setuptools
setuptools.setup(
scripts=['restic_exporter/restic_exporter.py'],
author="Antonio J. Delgado",
2022-12-26 18:34:20 +01:00
version='0.0.6',
2022-12-26 13:51:27 +01:00
name='restic_exporter',
author_email="",
url="",
description="Export to node exporter the summary of a restic backup",
long_description="README.md",
long_description_content_type="text/markdown",
license="GPLv3",
#keywords=["my", "script", "does", "things"]
)