forked from nodejs/tap2junit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.14 KB
/
setup.py
File metadata and controls
39 lines (35 loc) · 1.14 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
37
38
39
# coding: utf-8
# Always prefer setuptools over distutils
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tap2junit',
version='0.1.5',
description='Tap13 to jUnit',
long_description=long_description,
url='https://github.com/jbergstroem/tap2junit',
author='Johan Bergström',
author_email='bugs@bergtroem.nu',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='tap13 junit',
packages=['tap2junit'],
install_requires=['yamlish', 'junit-xml'],
entry_points={
'console_scripts': [
'tap2junit = tap2junit.__main__:main',
],
},
)