-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 792 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 792 Bytes
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
from setuptools import setup
setup(
name='squad-linaro-plugins',
version='1.35.2',
author='Charles Oliveira',
author_email='charles.oliveira@linaro.org',
url='https://github.com/linaro/squadplugins',
packages=['tradefed', 'ltp', 'mmtests'],
entry_points={
'squad_plugins': [
'tradefed=tradefed:Tradefed',
'ltp=ltp:LtpLogs',
'mmtests=mmtests:Mmtests',
]
},
license='AGPLv3+',
description="SQUAD plugins collection",
long_description="""
SQUAD plugins that are compatible with Linaro's test-definitions.
The package contains plugin for parsing CTS/VTS results (tradefed)
and LTP results (ltp).
""",
platforms='any',
install_requires=['squad[postgres]>=1.81', 'requests']
)