-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (29 loc) · 938 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[tool.poetry]
name = "mathesis"
version = "0.5.3"
description = "Formal logic library in Python for humans"
authors = ["Kentaro Ozeki <[email protected]>"]
readme = "README.md"
homepage = "https://ozekik.github.io/mathesis/"
repository = "https://github.com/ozekik/mathesis"
keywords = ['logic', 'semantics', 'proof', 'philosophy']
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
lark = "^1.1.2"
anytree = "^2.8.0"
prettytable = "^3.3.0"
[tool.poetry.group.dev.dependencies]
black = { version = "^24.4.2", allow-prereleases = true }
ipykernel = "^6.13.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.1"
mkdocs-material = "^9.1.21"
mkdocstrings-python = "^1.2.1"
mkdocs-exclude = "^1.0.2"
markdown-exec = { extras = ["ansi"], version = "^1.8.1" }
mkdocs-jupyter = "^0.24.5"
griffe-typingdoc = "^0.2.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"