forked from mkoura/dump2polarion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.08 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
from setuptools import setup, find_packages
setup(
name='dump2polarion',
use_scm_version=True,
url='https://github.com/mkoura/dump2polarion',
description='Dump testcases results to xunit file; submit files to Polarion importers',
long_description=open('README.rst').read().strip(),
author='Martin Kourim',
author_email='[email protected]',
license='GPL',
packages=find_packages(exclude=('tests',)),
scripts=['csv2sqlite.py', 'polarion_dumper.py'],
setup_requires=['setuptools_scm'],
install_requires=['requests', 'pyyaml', 'stomp.py'],
keywords=['polarion', 'testing'],
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers'],
include_package_data=True
)