-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (32 loc) · 1.04 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
# coding: UTF-8
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='pylint-unittest',
url='https://github.com/federicobond/pylint-unittest',
author='Federico Bond',
author_email='[email protected]',
description='A Pylint plugin for detecting incorrect use of unittest assertions',
long_description=read('README.rst'),
version='0.2.0',
packages=find_packages(),
include_package_data=True,
install_requires=[
'pylint',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords=['pylint', 'unittest', 'plugin'],
)