['lammps_step', 'A step in SEAMM Flowchart for LAMMPS simulations', '']
Project description
LAMMPS step
The LAMMPS step for a SEAMM flowchart
Free software: BSD license
Documentation: https://lammps-step.readthedocs.io.
Contributing
This project uses the git branching model outlined by Vincent Driessen. Development is handled by branching feature branches from the ‘develop’ branch:
Feature branches
- May branch off from:
develop
- Must merge back into:
develop
- Branch naming convention:
anything except master, develop, release-, or hotfix-
Feature branches (or sometimes called topic branches) are used to develop new features for the upcoming or a distant future release. When starting development of a feature, the target release in which this feature will be incorporated may well be unknown at that point. The essence of a feature branch is that it exists as long as the feature is in development, but will eventually be merged back into develop (to definitely add the new feature to the upcoming release) or discarded (in case of a disappointing experiment).
Feature branches typically exist in developer repos only, not in origin.
Creating a feature branch
When starting work on a new feature, branch off from the develop branch:
$ git checkout -b myfeature develop Switched to a new branch "myfeature"
Incorporating a finished feature on develop
Finished features may be merged into the develop branch to definitely add them to the upcoming release:
$ git checkout develop Switched to branch 'develop' $ git merge --no-ff myfeature Updating ea1b82a..05e9557 (Summary of changes) $ git branch -d myfeature Deleted branch myfeature (was 05e9557). $ git push origin develop
The –no-ff flag causes the merge to always create a new commit object, even if the merge could be performed with a fast-forward. This avoids losing information about the historical existence of a feature branch and groups together all commits that together added the feature.
Features
TODO
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.1.0 (2017-12-20)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file lammps_step-0.5.2.tar.gz
.
File metadata
- Download URL: lammps_step-0.5.2.tar.gz
- Upload date:
- Size: 53.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ab20c2263e4dd9c71e8e58e945237bb73331ce4cb0881582e10e78f6ac00605 |
|
MD5 | 5c605417088fb85049ee904a7bbc5be7 |
|
BLAKE2b-256 | 47301539a9ecf0f545a467d69299e3cc566b75b14400729b36083e3540b57418 |
File details
Details for the file lammps_step-0.5.2-py2.py3-none-any.whl
.
File metadata
- Download URL: lammps_step-0.5.2-py2.py3-none-any.whl
- Upload date:
- Size: 60.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a313fd77b36d55b6923754dd2667848a462d57b75f86f023d750f7056eaf977 |
|
MD5 | bf7f92d8ba2d57d6fdb6205db19d98fe |
|
BLAKE2b-256 | f0275be4cba6740e31166247df337fe6c753109a6220593f12aa9bbf14e7b9b3 |