forked from paramm-team/pybamm-param
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 707 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 707 Bytes
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
[build-system]
requires = [
"hatchling>=1.6.0",
]
build-backend = "hatchling.build"
[project]
name = "pbparam"
description = "A package for optimising parameters in PyBaMM. Under development."
readme = "README.md"
license = "BSD-3-Clause"
authors = [
{ name = "Ferran Brosa Planella, Muhammed Sogut, W. Dhammika Widanage", email = "Ferran.Brosa-Planella@warwick.ac.uk" },
]
dependencies = [
"matplotlib",
"pybamm",
]
dynamic = [
"version",
]
[project.optional-dependencies]
dev = [
"black",
"flake8>=3",
]
docs = [
"guzzle-sphinx-theme",
"sphinx>=1.5",
]
[tool.hatch.version]
path = "pbparam/version.py"
[tool.hatch.build.targets.sdist]
include = [
"/pbparam",
]