-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "snip-dedup"
version = "0.0.4"
description = 'SNIP: compact index for large dataset'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
keywords = ["snip", "deduplicate", "index", "laion", "machine learning", "computer vision", "dataset"]
authors = [
{ name = "Ryan Webster", email = "[email protected]" },
{ name = "Matthieu Pizenberg", email = "[email protected]" },
]
classifiers = [
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastparquet === 2023.2.0",
"fire == 0.5.*",
"numpy >= 1.24.2, < 2.0",
"pandas >= 1.5.3, < 2.0",
"requests >= 2.28.2, < 3.0",
"torch >= 1.13.1, < 2.0",
"faiss-gpu >= 1.7.2, < 2.0"
]
[project.urls]
Documentation = "https://github.com/ryanwebster90/snip-dedup#readme"
Source = "https://github.com/ryanwebster90/snip-dedup"
[project.scripts]
snip = "snip_dedup.cli:main"