Skip to content

Commit 8c22a4f

Browse files
authored
chore: use license expression syntax (#64)
Removes deprecated license classifiers, and uses the new license expression and license-files syntax Fixes #63
1 parent c840d5d commit 8c22a4f

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
re2c is distributed with no warranty whatever. The code is certain to contain
2+
errors. Neither authors nor contributors take any responsibility for the
3+
consequences of its use.
4+
5+
re2c is in the public domain. Data structures and algorithms used in re2c
6+
are all either taken from documents available to the general public or are
7+
inventions of the authors. Programs generated by re2c may be distributed freely.
8+
re2c itself may be distributed freely, in source or binary, unchanged or
9+
modified. Distributors may charge whatever fees they can obtain for re2c.
10+
11+
If you do make use of re2c, or incorporate it into a larger project an
12+
acknowledgement somewhere (documentation, research report, etc.) would be
13+
appreciated.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ build-backend = "scikit_build_core.build"
66
name = "re2c"
77
description = "re2c is a free and open-source lexer generator for C, C++, D, Go, Haskell, Java, JS, OCaml, Python, Rust, V and Zig with a focus on generating fast code."
88
keywords = ["re2c", "build", "c", "c++", "d", "go", "haskell", "java", "js", "ocaml", "python", "rust", "v", "zig"]
9-
license = {text = "https://github.com/skvadrik/re2c/blob/master/LICENSE"}
9+
license = "LicenseRef-Public-Domain"
10+
license-files = ["LICENSE"]
1011
readme = "README.md"
1112
classifiers = [
12-
"License :: Public Domain",
1313
"Programming Language :: C",
1414
"Programming Language :: C++",
1515
"Programming Language :: D",

0 commit comments

Comments
 (0)