/ pyproject.toml
pyproject.toml
 1  [build-system]
 2  requires = ["flit_core >= 3.12.0, <4"]
 3  build-backend = "flit_core.buildapi"
 4  
 5  [project]
 6  name = "cryolock"
 7  authors = [
 8    { name='Armin "Era" Ramezani', email="e@4d2.org" },
 9  ]
10  readme = "README.md"
11  requires-python = ">=2.7"
12  classifiers = [
13      "Topic :: Security",
14      "Intended Audience :: Developers",
15      "Programming Language :: Python :: 3",
16      "Programming Language :: Python :: 2.7",
17      "Development Status :: 5 - Production/Stable",
18  ]
19  license = "LGPL-3.0-or-later"
20  license-files = ["COPYING", "COPYING.LESSER"]
21  dynamic = ["version", "description"]
22  
23  [project.urls]
24  Homepage = "https://codeberg.org/3ra/cryolock"