Metadata-Version: 2.1
Name: lammps-step
Version: 0.2.1
Summary: ['lammps_step', 'A step in SEAMM Flowchart for LAMMPS simulations', '']
Home-page: https://github.com/molssi-seamm/lammps_step
Author: Paul Saxe
Author-email: psaxe@molssi.org
License: BSD-3-Clause
Keywords: lammps_step
Platform: Linux
Platform: Mac OS-X
Platform: Unix
Platform: Windows
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: Pmw
Requires-Dist: matplotlib
Requires-Dist: seamm-util
Requires-Dist: seamm
Requires-Dist: pprint
Requires-Dist: scipy
Requires-Dist: seamm-ff-util
Requires-Dist: statistics
Requires-Dist: statsmodels

===========
LAMMPS step
===========


.. image:: https://img.shields.io/pypi/v/lammps_step.svg
        :target: https://pypi.python.org/pypi/lammps_step

.. image:: https://img.shields.io/travis/molssi-seamm/lammps_step.svg
        :target: https://travis-ci.org/molssi-seamm/lammps_step

.. image:: https://readthedocs.org/projects/lammps-step/badge/?version=latest
        :target: https://lammps-step.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status

.. image:: https://pyup.io/repos/github/molssi-seamm/lammps_step/shield.svg
     :target: https://pyup.io/repos/github/molssi-seamm/lammps_step/
     :alt: Updates

.. image:: https://codecov.io/gh/molssi-seamm/lammps_step/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/molssi-seamm/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.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. _`git branching model`: http://nvie.com/posts/a-successful-git-branching-model/


=======
History
=======

0.1.0 (2017-12-20)
------------------

* First release on PyPI.


