-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
Showing
1 changed file
with
27 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
], | ||
}, | ||
) |