-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
50 lines (43 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "squigglepy"
version = "0.29-dev1"
description = "Squiggle programming language for intuitive probabilistic estimation features in Python"
authors = ["Peter Wildeford <[email protected]>"]
license = "MIT"
readme = "README.md"
include = ["CHANGES.md"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
repository = "https://github.com/rethinkpriorities/squigglepy"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.24.3"
scipy = "^1.10.1"
tqdm = "^4.65.0"
pathos = "^0.3.0"
msgspec = "^0.15.1"
matplotlib = { version = "^3.7.1", optional = true }
pandas = { version = "^2.0.2", optional = true }
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.272"
pytest = "^7.3.2"
pytest-mock = "^3.10.0"
black = "^23.3.0"
seaborn = "^0.12.2"
hypothesis = "^6.78.3"
hypofuzz = "^23.6.1"
[tool.poetry.extras]
plots = ["matplotlib"]
ecosystem = ["pandas"]
all = ["plots", "ecosystem"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 99
[tool.black]
line-length = 99