Skip to content

Commit

Permalink
improve python package information
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Wall committed Dec 5, 2023
1 parent 2fa938c commit 34c1299
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
#!/usr/bin/env python

import os
from distutils.core import setup

setup(name='haproxy-cli',
version='0.6',
from haproxy import __version__

_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='haproxy-cli',
version=__version__,
description='A tool to interact with HAProxy',
author='markt.de',
author_email='[email protected]',
Expand All @@ -13,6 +19,8 @@
'Documentation': 'https://github.com/markt-de/haproxy-cli',
'Source Code': 'https://github.com/markt-de/haproxy-cli',
},
long_description=long_description,
long_description_content_type="text/markdown",
packages=['haproxy'],
scripts=['bin/haproxy-cli'],
python_requires='>=3.7',
Expand Down

0 comments on commit 34c1299

Please sign in to comment.