-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #186 from Autodesk/simplify-build
Simplify and speed up build
- Loading branch information
Showing
145 changed files
with
563 additions
and
25,384 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[paths] | ||
source = | ||
moldesign | ||
*/site-packages/moldesign | ||
*/dist-packages/moldesign | ||
|
||
|
||
[run] | ||
|
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 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,54 @@ | ||
# This file defines environments for MDT to be installed in | ||
|
||
_SOURCES_: | ||
- PySCF.yml | ||
|
||
notebook: | ||
requires: | ||
- python_deploy | ||
build_directory: buildfiles/notebook/ | ||
build: | | ||
RUN conda install -yq matplotlib jupyter ipywidgets nbformat | ||
ENTRYPOINT /run_notebook.sh | ||
EXPOSE 8888 | ||
RUN mkdir /notebooks | ||
WORKDIR /notebooks | ||
COPY run_notebook.sh /run_notebook.sh | ||
complete_env_base: | ||
requires: | ||
- deploy_requirements | ||
- pyscf_mixin | ||
description: All of the external python chemistry libraries in one place | ||
build: | | ||
RUN apt-get update \ | ||
&& apt-get install -y libpng12-dev \ | ||
&& cleanapt | ||
RUN conda install -qy -c openbabel openbabel=2.4.1 \ | ||
&& conda install -qy -c omnia \ | ||
biopython=1.68 \ | ||
openmm=7.1.1 \ | ||
parmed=2.7.3 \ | ||
pdbfixer=1.4 \ | ||
&& conda install -qy -c bioconda opsin | ||
complete_env: | ||
requires: | ||
- python_deploy | ||
- complete_env_base | ||
|
||
|
||
complete_env_py2: | ||
requires: | ||
- python_deploy_py2 | ||
- complete_env_base | ||
|
||
|
||
complete_notebook_env: | ||
requires: | ||
- notebook | ||
- complete_env_base |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.