-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
63 lines (54 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
63
import versioneer
from setuptools import setup
extras_require = {
'dev': [
'coverage',
'pytest',
'pytest-cov',
],
}
extras_require['all'] = list({
dep for deps in extras_require.values() for dep in deps})
install_requires = [
'attrs',
'awpa >= 0.16.1.0',
'flake8 >= 3',
'gather',
'intervaltree',
'six',
]
with open('README.rst') as infile:
long_description = infile.read()
setup(
name='codifer',
description='building blocks for flake8 plugins',
long_description=long_description,
author='XXX',
author_email='XXX',
url='https://github.com/pyga/codifer',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Quality Assurance',
],
license='MIT',
packages=[
'codifer',
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'flake8.extension': [
'twistedchecker = codifer:EbbLint',
],
},
)