-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1019 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1019 Bytes
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>=80",
"setuptools-scm>=8",
]
build-backend = "setuptools.build_meta"
[project]
name = "flashpack"
dynamic = ["version"]
description = "Load ML models fast"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "fal-ai-community"}
]
dependencies = [
"accelerate>=1.0",
"click>=6.0",
"safetensors>=0.4",
"torch>=2.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
flashpack = "flashpack.__main__:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"pytest>=8.4.1",
"pre-commit>=3.0.0",
"setuptools-scm>=9.2.0",
]
[tool.setuptools_scm]
write_to = "src/flashpack/version.py"