-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
75 lines (68 loc) · 1.59 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
68
69
70
71
72
73
74
75
[metadata]
name = ntfyr
author = haxwithaxe
author_email = [email protected]
description = A simple client for ntfy.sh.
long_description = file: README.md
long_description_content_type = text/markdown
license = GPL-3.0+
license_files = LICENSE
classifiers =
Environment :: Console
Intended Audience :: System Administrators
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Topic :: System :: Systems Administration
Topic :: Utilities
[options]
packages = find:
python_requires = >=3.7
install_requires =
requests>=2
tzlocal>=4
project_urls =
homepage = https://github.com/haxwithaxe/ntfyr
issues = https://github.com/haxwithaxe/ntfyr/issues
[options.entry_points]
console_scripts =
ntfyr=ntfyr.__main__:main
[options.extras_require]
dev =
pre-commit
flake8
flake8-docstrings
flake8-bugbear
flake8-simplify
black
testing =
setuptools
pytest
pytest-cov
pytest-mock
[tool:pytest]
addopts =
--cov ntfyr --cov-report term-missing
--verbose
norecursedirs =
dist
build
testpaths = tests
# Use pytest markers to select/deselect specific tests
markers =
system: mark end-to-end system tests
[devpi:upload]
# VCS export must be deactivated since we are using setuptools-scm
no_vcs = 1
formats = bdist_wheel
[flake8]
max_line_length = 80
extend_ignore =
D107 # Don't need __init__ docstrings *and* class docstrings
E203 # Handled by Black
E266 # Allow multiple leading # for hierarchical comments
W503 # Handled by Black
exclude =
.tox
build
dist
.eggs
docs/conf.py