-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 912 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 912 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
40
[project]
name = "roviweb"
version = "0.0.1"
description = "Demonstration web service for battery health prognosis"
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
keywords = ["batteries", "science", "data science"]
authors = [
{name = "Logan Ward", email = "lward@anl.gov"},
]
dependencies = [
"matplotlib",
"battery-data-toolkit",
"fastapi",
"msgpack",
"python-multipart",
"moirae@git+https://github.com/ROVI-org/auto-soh.git",
"httpx-ws",
"numpy<2", # Vignesh's models are sklearn <1.3, which was before NumPy 2
"scikit-learn<1.3",
"tqdm"
]
[tool.setuptools.packages.find]
include = ["roviweb*"]
[project.optional-dependencies]
test = [
"flake8",
"pytest",
"pytest-cov",
"pytest-mock"
]
[project.urls]
repository = "https://github.com/rovi-org/services-demonstration"
[project.scripts]
rovicli = "roviweb.cli:main"