-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 761 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 761 Bytes
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
34
35
36
37
[tool.poetry]
name = "probably"
version = "4.0.0"
description = ""
authors = ["Philipp Schröer <mail@philworld.de>"]
[tool.poetry.dependencies]
python = "^3.11"
lark-parser = "^0.8.5"
algebraic-data-types = "^0.1.3"
attrs = "^19.3.0"
pysmt = "^0.9.0"
click = "^7.1.2"
sphinxcontrib-katex = "^0"
graphviz = "^0.15"
networkx = "~2.5"
[tool.poetry.dev-dependencies]
pytest = "^8.1.1"
pylint = "^2.5.2"
mypy = "^0.960"
yapf = "^0.30.0"
sphinx = "^7.1"
sphinx-autodoc-typehints = "^2.0"
sphinx-bootstrap-theme = "^0.8.1"
sphinx-click = "^3.0"
sphinx-git = "^11.0.0"
rope = "^0.17.0"
pytest-cov = "^2.9.0"
hypothesis = "^5.18.0"
[tool.poetry.scripts]
probably = "probably.cmd:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"