forked from klen/pylama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (55 loc) · 2.07 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
#!/usr/bin/env python
"""Setup pylama installation."""
import re
import sys
from os import path as op
from setuptools import setup, find_packages
_read = lambda f: open(
op.join(op.dirname(__file__), f)).read() if op.exists(f) else ''
_meta = _read('pylama/__init__.py')
_license = re.search(r'^__license__\s*=\s*"(.*)"', _meta, re.M).group(1)
_project = re.search(r'^__project__\s*=\s*"(.*)"', _meta, re.M).group(1)
_version = re.search(r'^__version__\s*=\s*"(.*)"', _meta, re.M).group(1)
install_requires = [
l.replace('==', '>=') for l in _read('requirements.txt').split('\n')
if l and not l.startswith('#') and not l.startswith('-')]
if sys.version_info < (2, 7):
install_requires += ['argparse']
meta = dict(
name=_project,
version=_version,
license=_license,
description=_read('DESCRIPTION'),
long_description=_read('README.rst'),
platforms=('Any'),
zip_safe=False,
keywords='pylint pep8 pycodestyle pyflakes mccabe linter qa pep257 pydocstyle'.split(),
author='Kirill Klenov',
author_email='horneds@gmail.com',
url=' https://github.com/klen/pylama',
packages=find_packages(exclude=['plugins']),
entry_points={
'console_scripts': [
'pylama = pylama.main:shell',
],
'pytest11': ['pylama = pylama.pytest'],
},
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Natural Language :: Russian',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Software Development :: Code Generators',
],
install_requires=install_requires,
)
if __name__ == "__main__":
setup(**meta)