-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
43 lines (39 loc) · 896 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
odeanimate = {path = ".", editable = true}
[dev-packages]
jupyterlab = "*"
notebook = "*"
black = "*"
pytest = "*"
mkdocs = "*"
pylint = "*"
ipywidgets = "*"
jupyter-book = "*"
mkdocstrings = {extras = ["python"], version = "*"}
mkdocs-jupyter = "*"
mknotebooks = "*"
pygments = "*"
matplotlib = "*"
setuptools = "*"
build = "*"
twine = "*"
coverage = {extras = ["toml"], version = "*"}
pytest-cov = "*"
pytest-doctestplus = "*"
python-lsp-server = {extras = ["all"], version = "*"}
ipympl = "*"
[requires]
python_version = "3.11"
[scripts]
build = "./scripts/build.sh"
build-docs = "./scripts/build-docs.sh"
clean = "./scripts/clean.sh"
jupyter = "jupyter lab"
publish = "./scripts/publish.sh"
publish-docs = "./scripts/publish-docs.sh"
tests = "./scripts/tests.sh"
docs = "./scripts/build-docs.sh serve"