-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (41 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""
.. module:: setup
:platform: Multiplatform
:synopsis: installer module
.. moduleauthor:: Andrea Cervesato <[email protected]>
"""
import libkirk
from setuptools import setup
setup(
name='kirk',
version=libkirk.VERSION,
description='All-in-one Linux Testing Framework',
author='Andrea Cervesato',
author_email='[email protected]',
license='LGPLv2',
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',
],
extras_require={
'ssh': ['asyncssh <= 2.13.2'],
'ltx': ['msgpack <= 1.0.5'],
},
packages=['libkirk'],
include_package_data=True,
entry_points={
'console_scripts': [
'kirk=libkirk.main:run',
],
},
)