mirror of https://github.com/KLayout/klayout.git
Specify build system in pyproject.toml, using SPDX compliant license spec.
This commit is contained in:
parent
85bb9be5c0
commit
e232bf8127
|
|
@ -1,3 +1,7 @@
|
|||
[build-system]
|
||||
requires = ["setuptools >= 77.0.3"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.cibuildwheel]
|
||||
build-verbosity = "3"
|
||||
test-command = [
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -987,7 +987,7 @@ if __name__ == "__main__":
|
|||
setup(
|
||||
name=config.root,
|
||||
version=config.version(),
|
||||
license="GNU GPLv3",
|
||||
license="GPL-3.0-or-later",
|
||||
description="KLayout standalone Python package",
|
||||
long_description="This package is a standalone distribution of KLayout's Python API.\n\nFor more details see here: https://www.klayout.org/klayout-pypi",
|
||||
author="Matthias Koefferlein",
|
||||
|
|
@ -996,7 +996,6 @@ if __name__ == "__main__":
|
|||
# Recommended classifiers
|
||||
"Programming Language :: Python :: 2",
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Operating System :: MacOS :: MacOS X",
|
||||
"Operating System :: Microsoft :: Windows",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
|
|
|
|||
Loading…
Reference in New Issue