diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/pyproject.toml b/pyproject.toml index 4a78d86..91b3428 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,25 +1,25 @@ [build-system] -requires = [ "flit_core >=3.2,<4" ] -build-backend = "flit_core.buildapi" +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" ] +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" } + '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' } |