blob: 91b3428499d656d958dcf3ca3996ddff90a7d97b (
plain) (
blame)
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
|
[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.9'
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' ]
urls = { Source = 'https://trong.loang.net/scadere' }
scripts = { scadere = 'scadere.__main__:main' }
|