-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.08 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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
name = "OPT4TorchDataSet"
dynamic = ["version"]
authors = [
{ name="梦归云帆", email="1138663075@qq.com" },
]
description = "Plug-and-Play Optimal Page Replacement Algorithm (OPT) for Torch Dataset"
keywords = ["python","torch","dataset","OPT"]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"torch",
"safetensors",
"typer",
"rich",
"loguru",
"psutil",
"cachetools",
"timm",
"packaging",
]
classifiers = [
"Programming Language :: Python :: 3",
]
[project.scripts]
opt4 = "OPT4TorchDataSet.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"OPT4TorchDataSet" = ["cpp/*.cpp"]
[tool.setuptools.dynamic]
version = {attr = "OPT4TorchDataSet.__version__"}
[project.urls]
Homepage = "https://github.com/Puiching-Memory/OPT4TorchDataset"
Issues = "https://github.com/Puiching-Memory/OPT4TorchDataset/issues"