-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
91 lines (76 loc) · 1.91 KB
/
setup.cfg
File metadata and controls
91 lines (76 loc) · 1.91 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[metadata]
name = linesieve
version = attr: linesieve.__version__
author = lemon24
description = An unholy blend of grep, sed, awk, and Python.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/lemon24/linesieve
license = BSD-3-Clause
project_urls =
Documentation = https://linesieve.readthedocs.io/
Issue Tracker = https://github.com/lemon24/linesieve/issues
Source Code = https://github.com/lemon24/linesieve
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Developers
Intended Audience :: System Administrators
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Topic :: Internet :: Log Analysis
Topic :: System :: Shells
Topic :: System :: Systems Administration
Topic :: Text Processing
Topic :: Text Processing :: Filters
Topic :: Utilities
keywords = grep, sed, awk, cli, command-line, terminal, text, text processing, search, replace, regex
[options]
packages = linesieve
package_dir = = src
python_requires = >=3.8
install_requires =
click >= 8
braceexpand >= 0.1
[options.extras_require]
tests =
pytest
pytest-cov
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-issues
dev =
pre-commit
build
twine
[options.entry_points]
console_scripts =
linesieve = linesieve.cli:cli
[tool:pytest]
addopts = --doctest-modules
testpaths = tests
[coverage:run]
branch = true
source =
linesieve
tests
[coverage:paths]
source =
src
*/site-packages
[flake8]
# E = pycodestyle errors
# F = flake8 pyflakes
# W = pycodestyle warnings
select = E, F, W
max-line-length = 88
ignore =
# slice notation whitespace, invalid
E203
# bin op line break, invalid
W503