forked from lanl/hippynn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (38 loc) · 939 Bytes
/
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
[build-system]
requires=["setuptools>=64", "versioneer[toml]"]
build-backend="setuptools.build_meta"
[project]
name="hippynn"
dynamic=["version"]
authors=[{name="Nicholas Lubbers et al",email="[email protected]"}]
description="The hippynn python package - a modular library for atomistic machine learning with pytorch"
requires-python=">=3.9"
license={text="BSD 3-Clause License"}
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries",
]
readme="README.rst"
dependencies=[
"numpy",
"torch",
]
[project.optional-dependencies]
docs=[
"sphinx",
"sphinx_rtd_theme",
]
full=[
"ase",
"numba",
"matplotlib",
"tqdm",
"graphviz",
"h5py",
"lightning",
"scipy",
]