-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.15 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nequip-allegro"
dynamic = ["version"]
description = "Allegro is an open-source code for building highly scalable and accurate equivariant deep learning interatomic potentials."
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "The NequIP Developers", email = "allegro-nequip@g.harvard.edu"},
]
dependencies = [
"nequip>=0.17.0",
]
[project.urls]
Repository = "https://github.com/mir-group/allegro"
[tool.setuptools]
packages = {find = {include = ["allegro", "allegro.*"]}}
[tool.setuptools.dynamic]
version = {attr = "allegro._version.__version__"}
[tool.ruff]
line-length = 88
exclude = [
".eggs",
"*.egg",
"build",
"dist",
"docs",
".git",
"__pycache__",
"examples",
"tmp"
]
[tool.ruff.lint]
select = ["E", "F", "W", "C90"]
ignore = ["E226", "E501", "E741", "E743", "C901", "E203"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[project.entry-points."nequip.extension"]
init_always = "allegro"