From 86f4f08260239fb34b707ed698428b88baba4ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20M=C3=A1gr?= Date: Fri, 4 Aug 2023 14:25:09 +0200 Subject: [PATCH] PyPI dist (#8) --- .gitignore | 4 ++++ AUTHORS | 6 ++++++ pyproject.toml | 3 +++ setup.cfg | 10 +++++++--- 4 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 .gitignore create mode 100644 AUTHORS create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b62bb99 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*\.egg-info +*\.py[co] +\.eggs +dist diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..57065c5 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,6 @@ +Chris Sibbitt +Jaromír Wysoglad +Leif Madsen +Leif Madsen +Marihan Girgis mgirgisf@redhat.com +Martin Mágr diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a82e4eb --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ['setuptools>=68'] +build-backend = 'setuptools.build_meta' diff --git a/setup.cfg b/setup.cfg index 0e50b18..7a3c674 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,17 +1,21 @@ [metadata] name = python-observabilityclient summary = OpenStack Observability Client -description_file = - README.md +long_description = file: README.md +long_description_content_type = text/markdown; charset=UTF-8 license = Apache License, Version 2.0 author = OpenStack author_email = openstack-discuss@lists.openstack.org home_page = https://infrawatch.github.io/documentation/ python_requires = >=3.6 +install_requires = + keystoneauth1 + osc-lib + requests + PyYaml classifier = Environment :: Console Environment :: OpenStack - Environment :: Infrawatch Intended Audience :: Developers Intended Audience :: Information Technology Intended Audience :: System Administrators