-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.09 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
[tool.poetry]
name = "fragmentmnp"
version = "1.0.1"
description = "Model of microplastic degradation and fragmentation in the environment"
authors = ["Sam Harrison <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/microplastics-cluster/fragment-mnp"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
scipy = "^1.8.0"
numpy = "^1.22.3"
matplotlib = "^3.5.1"
schema = "^0.7.5"
plotly = "^5.8.0"
pandas = "^1.4.2"
Pillow = ">=9.1.1"
ipykernel = "^6.16.2"
jupyter-core = ">=4.11.2"
[tool.poetry.group.dev.dependencies]
flake8 = "^4.0.1"
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
ipykernel = "^6.13.0"
ipywidgets = "^7.7.0"
jupyter-book = "1.0.3"
notebook = ">=6.4.12"
# Explicitly downgrading Sphinx deps because later version require Sphinx v5,
# which Jupyter Book doesn't support
# sphinxcontrib-applehelp = "<=1.0.4"
# sphinxcontrib-devhelp = "<=1.0.2"
# sphinxcontrib-htmlhelp = "<=2.0.1"
# sphinxcontrib-qthelp = "<=1.0.3"
# sphinxcontrib-serializinghtml = "<=1.1.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"