-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
43 lines (40 loc) · 1010 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
41
42
43
[build-system]
requires=["setuptools>=64", "versioneer[toml]"]
build-backend="setuptools.build_meta"
[project]
name="hippynn"
dynamic=["version"]
authors=[{name="Nicholas Lubbers et al",email="hippynn@lanl.gov"}]
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>2.0",
]
[project.optional-dependencies]
docs=[
"sphinx>=8.0",
"sphinx_rtd_theme>=3.0.0rc1",
"sphinxcontrib-bibtex>=2.6",
]
full=[
"ase",
"numba",
"matplotlib",
"tqdm",
"graphviz",
"h5py",
"lightning",
"scipy",
"opt_einsum",
]