-
Notifications
You must be signed in to change notification settings - Fork 72
/
pyproject.toml
60 lines (55 loc) · 1.16 KB
/
pyproject.toml
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
[build-system]
requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "mir-flare"
version = "1.4.2"
description = "Fast Learning of Atomistic Rare Events"
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name = "Materials Intelligence Research", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"ase==3.22",
"nptyping",
"numba",
"numpy",
"pyyaml",
"scipy",
"wandb",
]
[project.scripts]
flare-otf = "flare.scripts.otf_train:main"
[project.urls]
Homepage = "https://github.com/mir-group/flare"
[project.optional-dependencies]
tests = [
"pytest-mock",
"pytest>=4.6",
"IPython",
]
dev = [
"jupyter",
"memory_profiler",
]
docs = [
"babel",
"docutils==0.17.1",
"nbconvert",
"nbsphinx",
"pandoc",
"pygments==2.15.0",
"codecov",
"Sphinx",
"sphinx-rtd-theme",
"breathe"
]
[tool.scikit-build]
wheel.packages = ["flare"]