-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
36 lines (31 loc) · 1 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
from setuptools import setup, find_packages
import os
from junitparser import version
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
except IOError:
return ""
setup(
name="junitparser",
version=version,
description="Manipulates JUnit/xUnit Result XML files",
long_description=read("README.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Text Processing",
"Programming Language :: Python :: 3",
],
url="https://github.com/weiwei/junitparser",
author="Weiwei Wang",
author_email="[email protected]",
license="Apache 2.0",
install_requires=[],
keywords="junit xunit xml parser",
packages=find_packages(exclude=["tests"]),
entry_points={"console_scripts": ["junitparser=junitparser.cli:main"]},
zip_safe=False,
)