Update setup.py and url in README

This commit is contained in:
benoit 2022-02-07 11:09:46 +01:00
parent 7898011c40
commit ec3b8f6806
3 changed files with 13 additions and 12 deletions

View file

@ -39,7 +39,7 @@ Commands:
Installation from the git repository: Installation from the git repository:
``` ```
$ git clone <FIXME> $ git clone https://github.com/dalibo/check_patroni
``` ```
Change the branch if necessary. Then create a dedicated environment, Change the branch if necessary. Then create a dedicated environment,

View file

@ -28,7 +28,7 @@ cat << '_EOF_' >> $README
Installation from the git repository: Installation from the git repository:
``` ```
$ git clone <FIXME> $ git clone https://github.com/dalibo/check_patroni
``` ```
Change the branch if necessary. Then create a dedicated environment, Change the branch if necessary. Then create a dedicated environment,

View file

@ -19,22 +19,23 @@ def get_version() -> str:
setup( setup(
name="check_patroni", name="check_patroni",
version=get_version(), version=get_version(),
# author="Dalibo", author="Dalibo",
# author_email="contact@dalibo.com", author_email="contact@dalibo.com",
packages=find_packages("."), packages=find_packages("."),
include_package_data=True, include_package_data=True,
# url="https://github.com/dalibo/pg_activity", url="https://github.com/dalibo/check_patroni",
license="PostgreSQL", license="PostgreSQL",
description="Nagios plugin to check on patroni", description="Nagios plugin to check on patroni",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
# classifiers=[ classifiers=[
# "Development Status :: 5 - Production/Stable", # "Development Status :: 5 - Production/Stable",
# "Environment :: Console", "Development Status :: 4 - Beta",
# "License :: OSI Approved :: PostgreSQL License", "Environment :: Console",
# "Programming Language :: Python :: 3", "License :: OSI Approved :: PostgreSQL License",
# "Topic :: Database", "Programming Language :: Python :: 3",
# ], "Topic :: System :: Monitoring",
],
keywords="patroni nagios check", keywords="patroni nagios check",
python_requires=">=3.6", python_requires=">=3.6",
install_requires=[ install_requires=[