Skip to content

Commit

Permalink
fix license display
Browse files Browse the repository at this point in the history
Users what the license name, not the whole text
  • Loading branch information
Deric-W committed Aug 22, 2022
1 parent c842e70 commit 4e4699e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ use predefined ones from the `terms` subpackage.

Python >= 3.10 is required to use this package.

## Installation

```sh
python3 -m pip install lambda-calculus
```

## Examples

(λy.(λx.(λy. + x y)) y 3) 4
Expand Down
2 changes: 1 addition & 1 deletion lambda_calculus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from .terms import Variable, Abstraction, Application

__version__ = "1.10.0"
__version__ = "1.10.1"
__author__ = "Eric Niklas Wolf"
__email__ = "eric_niklas.wolf@mailbox.tu-dresden.de"
__all__ = (
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "lambda_calculus"
version = "1.10.0"
version = "1.10.1"
description = "Implementation of the Lambda calculus"
requires-python = ">=3.10"
keywords = []
Expand All @@ -19,7 +19,7 @@ file = "README.md"
content-type = "text/markdown"

[project.license]
file = "LICENSE"
text = "GNU General Public License v3 (GPLv3)"

[[project.authors]]
name = "Eric Niklas Wolf"
Expand Down

0 comments on commit 4e4699e

Please sign in to comment.