-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
75 lines (63 loc) · 1.78 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
64
65
66
67
68
69
70
71
72
73
74
75
import os
import versioneer
from setuptools import setup
# required due to vboxfs not supporting hard links. this doesn't have any ill
# effects. it just means there's a bit of copying instead of hard linking.
del os.link
extras_require = {
'dev': [
'coverage',
'pytest>=4<5',
'pytest-cov',
],
':python_version < "3.4"': [
'enum34',
],
}
extras_require['all'] = list({
dep for deps in extras_require.values() for dep in deps})
install_requires = [
'awpa >= 0.19.1.0',
'flake8-polyfill',
'flake8 >= 2.6.0',
'intervaltree>=3.0.0',
'six',
'venusian',
]
with open('README.rst') as infile:
long_description = infile.read()
setup(
name='ebb-lint',
description='lint for ensuring quality software',
long_description=long_description,
author='Python Grammar Authority',
author_email='[email protected]',
url='https://github.com/pyga/ebb-lint',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'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',
'Topic :: Software Development :: Quality Assurance',
],
license='MIT',
packages=[
'ebb_lint',
'ebb_lint.checkers',
'ebb_lint.test',
],
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'flake8.extension': [
'L = ebb_lint:EbbLint',
],
},
)