-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 1.06 KB
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
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "safetensors-streaming"
version = "0.1.1"
description = "Stream safetensors files from HTTP/S3 directly to GPU memory"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "James Lal", email = "james@littlebearlabs.io" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.optional-dependencies]
cuda = ["safetensors-streaming-cu12==0.1.1"]
[project.urls]
Repository = "https://github.com/lightsofapollo/safetensors-streaming"
Issues = "https://github.com/lightsofapollo/safetensors-streaming/issues"
[tool.maturin]
manifest-path = "crates/sst-python/Cargo.toml"
module-name = "safetensors_streaming.safetensors_streaming"
python-source = "python"
features = ["pyo3/extension-module"]