forked from aroden-crowdstrike/pylint2junit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (38 loc) · 1.14 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
39
from setuptools import find_packages, setup
setup(
name='pylint2junit',
description='Converts pylint output to junit style test results',
long_description=open('README.md').read(),
author='[email protected]',
author_email='[email protected]',
url='',
# excludes requires both a parent and children filter
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True, # if GIT committed; include
setup_requires=[
'setuptools_scm',
'wheel',
],
license="BSD",
keywords='pylint',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
entry_points={
'console_scripts': [
'pylint2junit = pylint2junit.__main__:main',
]
},
install_requires=[
],
tests_require=[
'pylint',
],
use_scm_version=True,
)