-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (65 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
71 lines (65 loc) · 1.56 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "src"
manifest-path = "rust/Cargo.toml"
features = ["pyo3/extension-module"]
# Implemented in Rust:
module-name = "sedpack._sedpack_rs"
[project]
name = "sedpack"
authors = [
{ name="Elie Bursztein"},
{ name="Karel Král"},
{ name="Jean-Michel Picod"},
]
description = "General ML dataset package"
readme = "README.md"
requires-python = ">=3.11"
keywords = ["machine learning", "dataset"]
license = {text = "Apache License 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Jupyter",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
dependencies = [
"aiofiles",
"asyncstdlib",
"flatbuffers",
"lz4",
"numpy",
"pydantic",
"semver",
"tenacity",
"tensorflow",
"tqdm",
"xxhash",
"zstandard",
]
[project.optional-dependencies]
dev = [
"maturin[patchelf,zig] ; platform_system != 'Windows'",
"maturin[zig] ; platform_system == 'Windows'",
"mypy",
"pylint",
"pytest",
"pytest-asyncio",
"pytest-cov",
"types-aiofiles",
"types-tensorflow",
"types-tqdm",
"yapf",
]
[project.scripts]
[project.urls]
"Homepage" = "https://github.com/google/sedpack"
"Bug Tracker" = "https://github.com/google/sedpack"
[tool.ruff]
target-version = "py310"