-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
63 lines (57 loc) · 1.75 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
[tool.black]
line-length = 79
target-version = ["py312"]
# =============================================================================
# PACKAGING
# =============================================================================
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "galpynostatic"
version = "0.5.12"
authors = [
{name = "Francisco Fernandez", email = "[email protected]"},
{name = "Maximiliano Gavilán", email = "[email protected]"},
{name = "Andres Ruderman", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
description = "A Python/C++ package with physics-based and data-driven models to predict optimal conditions for fast-charging lithium-ion batteries."
keywords = [
"battery",
"physics-based",
"data-driven",
"heuristic-algorithm",
"regression-models",
"fast-charging",
"predictions",
"metrics",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
dependencies = [
"importlib_metadata",
"matplotlib",
"numpy",
"pandas",
"pyyaml",
"scikit-learn",
"scipy",
]
[project.urls]
homepage = "https://github.com/fernandezfran/galpynostatic"
documentation = "https://galpynostatic.readthedocs.io"
repository = "https://github.com/fernandezfran/galpynostatic"
changelog = "https://github.com/fernandezfran/galpynostatic/blob/main/CHANGELOG.md"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["galpynostatic", "galpynostatic.*"]
namespaces = false