-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
94 lines (84 loc) · 2.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[metadata]
name = python-notifier
version = attr: notifier.version.VERSION
maintainer = Univention GmbH
maintainer_email = [email protected]
description = A generic notifier/event scheduler abstraction
long_description = file:README.md
url = https://github.com/univention/python-notifier
license = LGPLv2
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: GTK
Environment :: X11 Applications :: Qt
Framework :: Twisted
Intended Audience :: Developers
License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Libraries :: Python Modules
Operating System :: Unix
[options]
zip_safe = False
python_requires = >=2.7
packages = find:
setup_requires =
setuptools
install_requires =
monotonic; python_version < "3.3"
tests_require =
coverage
pytest
pytest-cov
mock
[options.extras_require]
qt4 = PyQt4
gtk = PyGObject
twisted = Twisted
[tox:tox]
envlist = begin, py{27,35,36,37,38}, end
skip_missing_interpreters = True
[testenv]
extras = testing
passenv = TOXENV CI TRAVIS TRAVIS_* CODECOV_*
deps =
{[options]install_requires}
{[options]tests_require}
commands = pytest --cov {envsitepackagesdir}/notifier --junitxml=junit-{envname}.xml {posargs:tests}
depends =
py{27,35,36,37,38}: begin
end: py{27,35,36,37,38}
[tool:pytest]
required_plugins =
pytest-cov
testpaths =
tests
addopts =
--verbose
--cov-append
--cov-report=term-missing
--cov-report=xml
[testenv:begin]
deps = coverage
skip_install = true
commands = coverage erase
[testenv:flake8]
deps = flake8
commands = flake8 --select=F,E9 --exclude=vendor {posargs:notifier}
[testenv:pycodestyle]
deps = pycodestyle
commands = pycodestyle --max-line-length=120 {posargs:notifier}
[testenv:pdoc]
deps = pdoc
commands = pdoc --overwrite --html notifier --html-dir docapi
[testenv:end]
deps = coverage
skip_install = true
commands =
coverage report --omit='.eggs/*' --show-missing
coverage html --omit='.eggs/*' --fail-under=10