forked from dskoda/quests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 713 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 713 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "quests"
version = "2024.06.21"
description = "Quick Uncertainty and Entropy from STructural Similarity"
authors = [{name = "Daniel Schwalbe-Koda", email = "dskoda@ucla.edu"}]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["feed", "reader", "tutorial"]
dependencies = [
"numpy",
"pandas",
"numba",
"ase",
"click",
"pynndescent",
"scikit-learn",
]
[project.scripts]
quests = "quests.cli.quests:quests"
[tool.setuptools]
packages = ["quests"]
[project.optional-dependencies]
docs = ["sphinx"]
gpu = ["torch", "torchvision"]