-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
67 lines (61 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
[metadata]
name = grin3
version = attr: grin.__version__
url = https://pypi.org/project/grin3/
project_urls =
Github = https://github.com/rsalmaso/grin3
Gitlab = https://gitlab.com/rsalmaso/grin3
author = Robert Kern
author_email = [email protected]
maintainer = Raffaele Salmaso
maintainer_email = [email protected]
description = A grep program configured the way I like it. (python3 port)
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
[options]
python_requires = >=3.5
packages =
grin
[options.entry_points]
console_scripts =
grin = grin.grin:main
grind = grin.grind:main
[wheel]
universal = 0
[bdist_wheel]
universal = 0
[flake8]
exclude = build,.git,.hg,.tox,.lib,__pycache__
# E203 doesn't work for slicing
# W503 talks about operator formatting which is too opinionated.
ignore = E203, W503, C819
max-complexity = 18
max-line-length = 120
select = B,C,E,F,W,T4,B9
[isort]
combine_as_imports = True
default_section = THIRDPARTY
force_grid_wrap = 0
include_trailing_comma = True
indent = 4
line_length = 120
multi_line_output = 3
use_parentheses = True