-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1.22 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ScoreBasedDenoising"
version = "2026.0"
description = "Score-based denoising for atomic structure identification - Iteratively subtract thermal noises or perturbations from atomic positions."
keywords = ["ovito", "ovito-extension"]
authors = [{ name = "Daniel Utt", email = "utt@ovito.org" }]
maintainers = [{ name = "Daniel Utt", email = "utt@ovito.org" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"ovito >= 3.9.1",
"ase",
"pandas",
"e3nn == 0.4.4",
"scikit-learn",
"torch >= 2.6, <= 2.10",
"torch-geometric < 2.7",
"graphite @ git+https://github.com/LLNL/graphite.git@b7b182d",
]
[project.urls]
repository = "https://github.com/ovito-org/ScoreBasedDenoising"
[project.entry-points.'OVITO.Modifier']
"Denoise particle positions" = "scoreBasedDenoising:ScoreBasedDenoising"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:module 'sre_parse' is deprecated:DeprecationWarning",
"ignore:module 'sre_constants' is deprecated:DeprecationWarning",
"ignore::DeprecationWarning:torch.jit",
]