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
|
[build-system]
requires = [ 'flit_core >=3.2,<4' ]
build-backend = 'flit_core.buildapi'
[project]
name = 'scadere'
description = 'TLS certificate renewal reminder'
readme = 'README.md'
requires-python = '>=3.11'
license = { file = 'COPYING' }
authors = [ { name = 'Nguyễn Gia Phong', email = 'cnx@loang.net' } ]
maintainers = [ { name = 'Nguyễn Gia Phong', email = 'chung@loa.loang.net' } ]
keywords = [ 'atom', 'tls', 'ca' ]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: AsyncIO',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities' ]
dynamic = [ 'version' ]
[project.urls]
Source = 'https://trong.loang.net/scadere'
Inbox = 'https://loa.loang.net/chung'
[project.optional-dependencies]
dev = [ 'coverage',
'flake8',
'hypothesis',
'pytest',
'pytest-asyncio',
'trustme >= 1.2.0' ]
[project.scripts]
scadere-check = 'scadere.check:main'
scadere-listen = 'scadere.listen:main'
[tool.pytest.ini_options]
asyncio_mode = 'auto'
asyncio_default_fixture_loop_scope = 'function'
testpaths = [ 'tst' ]
verbosity_assertions = 2
[tool.coverage.run]
branch = true
command_line = '-m pytest'
source = [ '.' ]
[tool.coverage.report]
fail_under = 100
show_missing = true
|