-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (71 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
85 lines (71 loc) · 2.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "flashmd"
version = "0.2.8"
requires-python = ">=3.10"
readme = "README.md"
license = {text = "Apache-2.0"}
description = "Accelerated molecular dynamics with large-time-step predictions"
authors = [{name = "flashmd developers"}]
dependencies = [
"metatrain==2026.2",
"metatomic-ase",
"ase",
"huggingface_hub",
]
keywords = ["machine learning", "molecular modeling", "molecular dynamics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"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",
]
# TODO: add project URLs
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
"mypy",
]
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "B", "I"]
ignore = ["B018", "B904", "E501"]
[tool.ruff.lint.per-file-ignores]
"**/{tests}/*" = ["D"]
[tool.ruff.lint.isort]
lines-after-imports = 2
known-first-party = ["flashmd"]
[tool.ruff.format]
docstring-code-format = true
[tool.mypy]
follow_imports = 'skip'
ignore_missing_imports = true
disable_error_code = ["union-attr"]
[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:custom data:UserWarning",
"ignore:`torch.jit.script` is deprecated:DeprecationWarning",
"ignore:`torch.jit.load` is deprecated:DeprecationWarning",
"ignore:`compute_requested_neighbors` is deprecated and will be removed in a future version:UserWarning",
"ignore:`compute_requested_neighbors_from_options` is deprecated and will be removed in a future version:UserWarning"
]