-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.36 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
51
52
53
54
55
[tool.poetry]
name = "josiepy"
packages = [
{include = "josie"}
]
version = "0.9.0"
description = "A 2D PDE solver written in Python without compromising (too much) performance"
authors = ["Ruben Di Battista <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
aenum = "^3.1.15"
numpy = "^1.24.2"
scipy = "^1.10.1"
matplotlib = "^3.7.1"
meshio = {extras = ["all"], version = "^5.3.4"}
jupyter = {version = "^1.0.0", optional = true}
ipywidgets = {version = "^8.0.6", optional = true}
ipyevents = {version = "^2.0.1", optional = true}
RISE = {version = "^5.7.1", optional = true}
markupsafe = "2.0.1"
[tool.poetry.extras]
jupyter = ["jupyter", "ipywidgets", "ipywidgets", "RISE"]
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 ="^6.0.0"
invoke = "^2.0.0"
mypy = "^1.2.0"
nbconvert = "^7.3.1"
jsonschema = "3.2.0"
nbdime = "^3.1.1"
pygount = "^1.5.1"
pytest = "^7.3.1"
pytest-benchmark = "^4.0.0"
pytest-mock = "^3.10.0"
pytest-mypy = "^0.10.3"
pytest-xdist = "^3.2.1"
Sphinx = "^6.1.3"
sphinx-autodoc-typehints = "^1.23.0"
sphinx-markdown-tables = "^0.0.17"
sphinx-rtd-theme = "^1.2.0"
sphinxcontrib-bibtex = "^2.5.0"
pytest-profiling = "^1.7.0"
commonmark = "^0.9.1"
recommonmark = "^0.7.1"
pytest-cov = "^4.0.0"
ipdb = "^0.13.13"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"