-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.19 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
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["maturin>=1.14.1,<2.0"]
build-backend = "maturin"
[project]
name = "webshart"
version = "0.5.3"
description = "Fast and memory-efficient webdataset shard reader"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "bghira", email = "bghira@users.github.com"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["dataset", "shards", "tar", "webdataset", "machine-learning"]
dependencies = [
"tqdm>=4.69.0,<5.0.0"
]
[project.optional-dependencies]
hub = ["huggingface-hub>=1.0.0,<2.0.0"]
[project.scripts]
webshart = "webshart:main"
[project.urls]
Homepage = "https://github.com/bghira/webshart"
Repository = "https://github.com/bghira/webshart"
Issues = "https://github.com/bghira/webshart/issues"
[tool.maturin]
python-source = "python"
module-name = "webshart._webshart"