Skip to content

Commit 4e4699e

Browse files
committed
fix license display
Users what the license name, not the whole text
1 parent c842e70 commit 4e4699e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ use predefined ones from the `terms` subpackage.
1515

1616
Python >= 3.10 is required to use this package.
1717

18+
## Installation
19+
20+
```sh
21+
python3 -m pip install lambda-calculus
22+
```
23+
1824
## Examples
1925

2026
(λy.(λx.(λy. + x y)) y 3) 4

lambda_calculus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .terms import Variable, Abstraction, Application
66

7-
__version__ = "1.10.0"
7+
__version__ = "1.10.1"
88
__author__ = "Eric Niklas Wolf"
99
__email__ = "[email protected]"
1010
__all__ = (

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lambda_calculus"
3-
version = "1.10.0"
3+
version = "1.10.1"
44
description = "Implementation of the Lambda calculus"
55
requires-python = ">=3.10"
66
keywords = []
@@ -19,7 +19,7 @@ file = "README.md"
1919
content-type = "text/markdown"
2020

2121
[project.license]
22-
file = "LICENSE"
22+
text = "GNU General Public License v3 (GPLv3)"
2323

2424
[[project.authors]]
2525
name = "Eric Niklas Wolf"

0 commit comments

Comments
 (0)