Skip to content

Commit

Permalink
Refactor setuptools script
Browse files Browse the repository at this point in the history
This patch entroduces README in the long_description and reformat
setuptools script for better reading.

Signed-off-by: Andrea Cervesato <[email protected]>
  • Loading branch information
acerv committed Jul 26, 2024
1 parent 81c49ee commit aa7d693
Showing 1 changed file with 27 additions and 23 deletions.
50 changes: 27 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,43 @@
:synopsis: installer module
.. moduleauthor:: Andrea Cervesato <[email protected]>
"""
import libkirk

from setuptools import setup

import libkirk

setup(
name='kirk',
name="kirk",
version=libkirk.__version__,
description='All-in-one Linux Testing Framework',
author='Andrea Cervesato',
author_email='[email protected]',
license='GPLv2',
url='https://github.com/acerv/kirk',
description="All-in-one Linux Testing Framework",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Andrea Cervesato",
author_email="[email protected]",
license="GPLv2",
url="https://github.com/acerv/kirk",
classifiers=[
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Testing',
"Natural Language :: English",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
],
extras_require={
'ssh': ['asyncssh <= 2.13.2'],
'ltx': ['msgpack <= 1.0.5'],
"ssh": ["asyncssh <= 2.13.2"],
"ltx": ["msgpack <= 1.0.5"],
},
packages=['libkirk'],
packages=["libkirk"],
include_package_data=True,
entry_points={
'console_scripts': [
'kirk=libkirk.main:run',
"console_scripts": [
"kirk=libkirk.main:run",
],
},
)

0 comments on commit aa7d693

Please sign in to comment.