forked from gforcada/flake8-pep3101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.63 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import setup
short_description = 'Checks for old string formatting.'
long_description = '{0}\n{1}'.format(
open('README.rst').read(),
open('CHANGES.rst').read()
)
setup(
name='flake8-pep3101',
version='1.1.dev0',
description=short_description,
long_description=long_description,
# Get more from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Flake8',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Quality Assurance',
],
keywords='pep8 pycodestyle flake8 string formatting',
author='Gil Forcada',
author_email='gil.gnome@gmail.com',
url='https://github.com/gforcada/flake8-pep3101',
license='GPL version 2',
py_modules=['flake8_pep3101', ],
include_package_data=True,
test_suite='run_tests',
zip_safe=False,
install_requires=[
'flake8 >= 3.0',
],
extras_require={
'test': [
'pytest',
'testfixtures',
],
},
entry_points={
'flake8.extension': ['S001 = flake8_pep3101:Flake8Pep3101'],
},
)