This repository was archived by the owner on Apr 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.2 KB
/
setup.py
File metadata and controls
36 lines (35 loc) · 1.2 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='pytest-subunit',
description=(
'pytest-subunit is a plugin for py.test which outputs tests'
'result in subunit format.'
),
long_description="",
version='0.0.10',
license='Apache 2',
author='Łukasz Oleś',
author_email='loles@mirantis.com',
py_modules=['pytest_subunit'],
entry_points={'pytest11': ['subunit = pytest_subunit']},
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=['pytest>=2.3','python-subunit>=1.2'],
url='https://github.com/loles/pytest-subunit',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
]
)