-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.4 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=42", "wheel", "cython>=3.0.0", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "barecat"
version = "0.2.4"
description = """
Efficient dataset storage format through barebones concatenation of binary files
and an SQLite index. Optimized for fast random access in machine learning workloads.
"""
authors = [
{ name = "István Sárándi", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
dependencies = [
"multiprocessing-utils",
"tqdm",
"crc32c"
]
[project.scripts]
barecat-create = "barecat.cli:create"
barecat-extract = "barecat.cli:extract"
barecat-merge = "barecat.cli:merge"
barecat-merge-symlink = "barecat.cli:merge_symlink"
barecat-extract-single = "barecat.cli:extract_single"
barecat-index-to-csv = "barecat.cli:index_to_csv"
barecat-verify = "barecat.cli:verify_integrity"
barecat-to-ncdu-json = "barecat.cli:print_ncdu_json"
archive2barecat = "barecat.cli:archive2barecat"
barecat2archive = "barecat.cli:barecat2archive"
barecat-defrag = "barecat.cli:defrag"
barecat-create-recursive = "barecat.cli:create_recursive"
barecat-viewer = "barecat.viewerqt6:main"
barecat-upgrade-database = "barecat.upgrade_database:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 99
skip-string-normalization = true