- Overview
- Tutorials
- Installation
- Download the package from GitHub
- Creating a python environment
- Developer install of PyEF
- Supporting installations
- What is included?
- File structure
- Command Line Interface
- Documentation
- Update the ReadTheDocs
- GitHub refresher
The purpose of PyEF is to make electric field and electrostatics calculations more accessible. PyEF is a python package optimized to run using molden files from QM calculations.
In progress
Install the package by running the follow commands inside the downloaded repository. This will perform a developmental version install. It is good practice to do this inside of a virtual environment.
git clone [email protected]:davidkastner/pyEF.git
All the dependencies can be loaded together using the prebuilt environment.yml file. Compatibility is automatically tested for python versions 3.8 and higher. Installing all dependencies together has shown to produce more robust installations.
cd pyEF
conda env create -f environment.yml
conda activate pyef
cd pyEF
python -m pip install -e .
PyEF contains a collection of optimized scripts that work together in pre-built workflows. If a script is not already included for procedure, many of the functions may be useful in building a procedure.
.
├── docs # Readthedocs documentation site
├── pyEF # Directory containing E3Bind modules
│ ├── cli.py # Entry point for running E3Bind tools and workflows
│ ├── run # Runs the workflow
│ ├── analysis # Analyze the data
│ └── geometry # Check geometries
└── ...
Accurate documentation will always be a high priority for the project. You can find documentation at the project's ReadtheDocs.
make clean
make html
git status
git pull
git add -A .
git commit -m "Change a specific functionality"
git push -u origin main
git checkout main
git pull
# Before you begin making changes, create a new branch
git checkout -b new-feature-branch
git add -A
git commit -m "Detailed commit message describing the changes"
git push -u origin new-feature-branch
# Visit github.com to add description, submit, merge the pull request
# Once finished on github.com, return to local
git checkout main
git pull
# Delete the remote branch
git branch -d new-feature-branch
git stash push --include-untracked
git stash drop
git pull
Authors: Melissa Manetsch and David W. Kastner
MolSSi template version 1.6.