-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
58 lines (53 loc) · 1.46 KB
/
setup.cfg
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
[flake8]
max-line-length=120
max-complexity=10
[isort]
line_length = 120
combine_as_imports = true
default_section = THIRDPARTY
known_first_party = polint
[metadata]
name = polint
version = 0.4
platform = any
description = Linter for gettext PO files
long-description = file: README.rst, CHANGELOG.rst
keywords = gettext, linter
home-page = https://github.com/ziima/polint
author-email = vlastimil.zima@gmail.com
license = GPLv3+
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Natural Language :: English
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 :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Build Tools
Topic :: Software Development :: Internationalization
Topic :: Software Development :: Quality Assurance
Topic :: Utilities
[options]
setup_requires = setuptools>=39.2
install_requires =
docopt
polib
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
py_modules = polint
[options.extras_require]
quality =
flake8
isort
pydocstyle
tests =
mock
[options.entry_points]
console_scripts =
polint = polint:main