-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
66 lines (62 loc) · 1.52 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
56
57
58
59
60
61
62
63
64
65
66
[build-system]
requires = [
"hatch-vcs",
"hatchling",
]
build-backend = "hatchling.build"
[project]
name = "liionpack"
description = "A battery pack simulator for PyBaMM"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Tom Tranter", email = "t.g.tranter@gmail.com" },
]
requires-python = ">=3.10, <3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dynamic = [
"version",
]
dependencies = [
"pybamm==24.9",
"Ipython",
"lcapy",
"matplotlib",
"networkx",
"numpy",
"openpyxl",
"pandas",
"plotly",
"ray",
"redis",
"scikit-spatial",
"scipy",
"textwrapper",
"tqdm",
"ipywidgets",
]
[project.optional-dependencies]
dev = [
"pytest",
"nbmake",
]
[project.urls]
"Bug Tracker" = "https://github.com/pybamm-team/liionpack/issues"
Changelog = "https://github.com/pybamm-team/liionpack/blob/develop/CHANGELOG.md"
Documentation = "https://liionpack.readthedocs.io/en/latest/"
Homepage = "https://github.com/pybamm-team/liionpack"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "liionpack/_version.py"