-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 2.55 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
51
52
53
54
55
56
57
58
[project]
name = "metatomic-ase"
dynamic = ["version", "authors", "dependencies"]
requires-python = ">=3.10"
readme = "README.md"
license = "BSD-3-Clause"
description = "ASE interface to use metatomic atomistic machine learning models"
keywords = ["machine learning", "molecular modeling", "ase"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
homepage = "https://docs.metatensor.org/metatomic/latest/engines/ase.html"
documentation = "https://docs.metatensor.org/metatomic/latest/engines/ase.html"
repository = "https://github.com/metatensor/metatomic/blob/main/python/metatomic_ase"
changelog = "https://github.com/metatensor/metatomic/blob/main/python/metatomic_ase/CHANGELOG.md"
### ======================================================================== ###
[build-system]
requires = [
"setuptools >=77",
"packaging >=23",
]
build-backend = "setuptools.build_meta"
### ======================================================================== ###
[tool.pytest.ini_options]
python_files = ["*.py"]
testpaths = ["tests"]
filterwarnings = [
"error",
# ModelOutput.quantity deprecation (C++ TORCH_WARN_DEPRECATION)
"ignore:ModelOutput.quantity is deprecated:DeprecationWarning",
# TorchScript deprecation warnings
"ignore:`torch.jit.script` is deprecated. Please switch to `torch.compile` or `torch.export`:DeprecationWarning",
"ignore:`torch.jit.script_method` is deprecated. Please switch to `torch.compile` or `torch.export`:DeprecationWarning",
"ignore:`torch.jit.save` is deprecated. Please switch to `torch.export`:DeprecationWarning",
"ignore:`torch.jit.load` is deprecated. Please switch to `torch.export`:DeprecationWarning",
# There is a circular dependency between metatomic-torch and vesin.metatomic
"ignore:.*vesin.metatomic was only tested with metatomic.torch >=0.1.3,<0.2.*:UserWarning",
# deprecation warning from vesin
"ignore:`compute_requested_neighbors_from_options` is deprecated and will be removed in a future version:UserWarning",
]