diff options
author | Nguyễn Gia Phong <cnx@loang.net> | 2025-06-19 09:12:06 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <cnx@loang.net> | 2025-06-19 09:12:06 +0900 |
commit | dd5d14b26a50e15c6c98e5c0e88904488184b9fa (patch) | |
tree | 848c65d35f2fc1f93aa7d614a2b68f0631a8074e | |
parent | 8a6154ff22609d7044f16c56cdac8d065332d6bc (diff) | |
download | scadere-dd5d14b26a50e15c6c98e5c0e88904488184b9fa.tar.gz |
Adjust license location in pyproject.toml 0.1.0
-rw-r--r-- | pyproject.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 4677381..b466014 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = [ 'flit_core >=3.2,<4' ] +requires = [ 'flit_core >=3.11,<4' ] build-backend = 'flit_core.buildapi' [project] @@ -7,7 +7,8 @@ name = 'scadere' description = 'TLS certificate renewal reminder' readme = 'README.md' requires-python = '>=3.11' -license = { file = 'COPYING' } +license = 'AGPL-3.0-or-later AND CC0-1.0' +license-files = [ 'LICENSES/*.txt' ] 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' ] @@ -16,7 +17,6 @@ classifiers = [ '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' ] |