-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (35 loc) · 1.12 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
37
38
from __future__ import with_statement
import setuptools
requires = [
"flake8 > 3.0.0",
"junit-xml >= 1.8"
]
readme = open('README.rst').read()
setuptools.setup(
name="flake8_formatter_junit_xml",
license="MIT",
version="0.0.6",
description="JUnit XML Formatter for flake8",
long_description=readme,
author="Asato Wakisaka",
author_email="[email protected]",
url="https://github.com/astj/flake8-formatter-junit-xml",
packages=setuptools.find_packages(exclude=['examples']),
install_requires=requires,
entry_points={
'flake8.report': [
'junit-xml = flake8_formatter_junit_xml:JUnitXmlFormatter',
],
},
classifiers=[
"Framework :: Flake8",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
],
)