-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
32 lines (26 loc) · 816 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "erbium"
version = "0.0.1"
description = "Project Neura's Internal Computing Platform"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Project Neura", email = "central@projectneura.org" }
]
dependencies = ["fastapi", "uvicorn", "pydantic", "nvidia-ml-py", "psutil", "matplotlib"]
[project.optional-dependencies]
all = ["py-cpuinfo"]
[tool.hatch.build.targets.sdist]
only-include = ["erbium"]
[tool.hatch.build.targets.wheel]
packages = ["erbium"]
[project.urls]
Homepage = "https://github.com/ProjectNeura/Erbium"
Documentation = "https://github.com/ProjectNeura/Erbium"
Repository = "https://github.com/ProjectNeura/Erbium"
[project.scripts]
erbium = "erbium:__entry__"