-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
45 lines (42 loc) · 1.07 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jellybamm"
version = "0.0.3"
description = "Jelly Roll Battery modelling using PyBaMM"
authors = [{name = "Tom Tranter", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"numba",
"liionpack==0.3.8",
"pybamm==23.9",
"openpnm==2.8.2",
"ffmpeg-python",
"ipywidgets"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"nbconvert>=7.2.9,<8",
"mkdocs>=1.4.0,<2",
"mkdocs-material>9.0.0",
"jupytext>1.13.8,<2",
"Pygments>2.12.0",
"ipykernel<7.0.0,>6.0.0",
"pymdown-extensions",
"mkdocs-jupyter",
"mkdocstrings-python-legacy",
"mkdocs-material-extensions>=1.0"
]
[tool.setuptools.packages.find]
include = ["jellybamm"]