-
Notifications
You must be signed in to change notification settings - Fork 262
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pyproject.toml for cattsunami * adding tests for cattsunami * ocpneb packaging * cleanup ocpneb tests * normalize project names * move cattsunami tests to root test folder * fix imports * allow ase imports from latest version and development version * pip install cattsunami in tests * cleaning up paths and getting tests to function * install cattsunami for docs as well * sneak-in a doc syntax fix * no space * updating doc md * no pytest in reaction * refactor ocpneb package * fix ocpneb imports * move README.md * fix ocpneb install * rename test directory * test lint * renaming to cattsunami * updating gitbook build with package name * changing runner test yaml to cattsunami * changing adsorbates pkl to adsorbate pkl * update cattsunami dist build directory * updating readme with monorepo links * trimming down test time * reducing batch size incase of mem issues --------- Co-authored-by: Brook Wander <brook.l.wander@gmail.com>
- Loading branch information
1 parent
7e8aea5
commit 4c094c4
Showing
38 changed files
with
555 additions
and
97 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 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,36 @@ | ||
[build-system] | ||
requires = ["hatchling", "hatch-vcs", "hatch-fancy-pypi-readme>=24"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "fairchem-applications-cattsunami" | ||
dynamic = ["version", "readme"] | ||
description = "Accelerating Transition State Energy Calculations with Pre-trained Graph Neural Networks" | ||
license = {text = "MIT License"} | ||
|
||
[project.urls] | ||
repository = "http://github.com/Fair-Chem/src/fairchem/applications/cattsunami" | ||
|
||
[tool.hatch.version] | ||
source = "vcs" | ||
|
||
[tool.hatch.version.raw-options] | ||
root = "../../" | ||
git_describe_command = 'git describe --tags --match fairchem_applications_cattsunami-*' | ||
|
||
[tool.hatch.build] | ||
directory = "../../dist-applications-cattsunami" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
only-include = ["src/fairchem/applications/cattsunami"] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
sources = ["src"] | ||
only-include = ["src/fairchem/demo/ocpapi"] | ||
|
||
[tool.hatch.metadata.hooks.fancy-pypi-readme] | ||
content-type = "text/markdown" | ||
fragments = [ | ||
{ path = "src/fairchem/applications/cattsunami/README.md" }, | ||
{ path = "src/fairchem/applications/cattsunami/DATASET.md" } | ||
] |
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 @@ | ||
../../src/ |
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
File renamed without changes.
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,4 @@ | ||
from .reaction import Reaction | ||
from .ocpneb import OCPNEB | ||
|
||
__all__ = ["Reaction", "OCPNEB"] |
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.