-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated installation for cuda 12.6 * new setup.py pyproject.toml installation * cleanup * fix tests and deprecations * most deps are added now by the pip package * cleanup deps more * better handling of CUDA builds * correct building and installation * reorganize CI * install nnpops later * fix nnpops installation on correct OSs * nnpops is installing pytorch-cpu from conda which is messing with the torch used to compile from pip * pytorch doesn't generate pip packages anymore for old osx machines * be a bit more flexible with specific builds * fix docs building * fix python version * delayed import of NNPops to fix issues in docs generation * fixed paths to scripts module * undo commenting out
- Loading branch information
Showing
17 changed files
with
123 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[project] | ||
name = "torchmd-net" | ||
description = "TorchMD-NET provides state-of-the-art neural networks potentials for biomolecular systems" | ||
authors = [{ name = "Acellera", email = "info@acellera.com" }] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
dynamic = ["version"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: POSIX :: Linux", | ||
] | ||
dependencies = [ | ||
"h5py", | ||
# "nnpops", | ||
"torch==2.5.1.*", | ||
"torch_geometric", | ||
"lightning", | ||
"tqdm", | ||
"pandas", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/torchmd/torchmd-net" | ||
"Bug Tracker" = "https://github.com/torchmd/torchmd-net/issues" | ||
|
||
[project.scripts] | ||
torchmd-train = "torchmdnet.scripts.train:main" | ||
|
||
[tool.setuptools_scm] | ||
|
||
[tool.setuptools.packages.find] | ||
where = [""] | ||
include = ["torchmdnet*"] | ||
namespaces = false | ||
|
||
[build-system] | ||
requires = ["setuptools>=64", "setuptools-scm>=8", "torch==2.5.1.*"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.