Skip to content

Commit e84ee82

Browse files
committed
Updated pyproject.toml for new pypi version
1 parent 5037adf commit e84ee82

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ LogicalPy is a small Python library providing basic functionalities for manipula
1111
The library allows to work with classical propositional logic formulae.
1212
The main features include:
1313

14-
- The creation of logical formulae either directly or from a string
14+
- The construction of logical formulae either directly or from a string
1515
- The implementation of semantic notions: satisfiability, entailment...
1616
- The conversion to normal forms (NNF, DNF, DNF)
1717
- Automated theorem proving with the resolution procedure

docs/usage/normal-forms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ P ∨ (¬Q ∧ ¬P)
5151
## Clausal representations of normal forms
5252

5353
The `normal_forms` sub-module also contains classes representing conjunctive and disjunctive clauses.
54-
The CNF and DNF can be found in terms of clauses with the `to_clausal_cnf()` and `to_clausal_dnf()` functions.
54+
The CNF and DNF forms can be found in terms of clauses with the `to_clausal_cnf()` and `to_clausal_dnf()` functions.
5555
With `to_cnf()` and `to_dnf()`, the resulting normal forms are `Formula` instances, so disjunction and conjunction
5656
are represented as binary operators, but with `to_clausal_cnf()` and `to_clausal_dnf()`, the results are lists
57-
of clauses. Note that the resulting clauses aren't simplified afterhand.
57+
of clauses. Note that the resulting clauses aren't simplified.
5858

5959
<br>
6060

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ build-backend = "hatchling.build"
55
[project]
66
name = "logicalpy"
77
description = "A library providing basic functionalities for manipulating propositional logic"
8-
version = "0.1.0"
8+
version = "0.1.1"
9+
authors = [
10+
{name = "Timothée Monin"}
11+
]
912
dependencies = ["lark>=1.2.2"]
1013
requires-python = ">= 3.13"
1114
readme = "README.md"

0 commit comments

Comments
 (0)