Metadata-Version: 2.1
Name: elle
Version: 0.0.1
Summary: Library of anonymous finite elements with analytic derivatives.
Home-page: https://github.com/claudioperez/elle
Author: Claudio M. Perez
Author-email: claudio_perez@berkeley.edu
License: UNKNOWN
Project-URL: Changelog, https://github.com/claudioperez/elle/blob/master/CHANGELOG.md
Project-URL: Issue Tracker, https://github.com/claudioperez/elle/issues
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: backends
Requires-Dist: jaxlib (>0.1.51,~=0.1) ; extra == 'backends'
Requires-Dist: jax (>0.1.72,~=0.1) ; extra == 'backends'
Requires-Dist: tensorflow-probability (~=0.10) ; extra == 'backends'
Requires-Dist: tensorflow (~=2.0) ; extra == 'backends'
Provides-Extra: jax
Requires-Dist: jax (>0.1.72,~=0.1) ; extra == 'jax'
Requires-Dist: jaxlib (>0.1.51,~=0.1) ; extra == 'jax'
Provides-Extra: shellcomplete
Requires-Dist: click-completion ; extra == 'shellcomplete'
Provides-Extra: tensorflow
Requires-Dist: tensorflow (~=2.0) ; extra == 'tensorflow'
Requires-Dist: tensorflow-probability (~=0.10) ; extra == 'tensorflow'

========
Overview
========



2D beam model.

* Free software: BSD 3-Clause License

Installation
============

::

    pip install elle

You can also install the in-development version with::

    pip install https://github.com/claudioperez/Beam2D/archive/master.zip


Documentation
=============


To use the project:

.. code-block:: python

    from elle import beam2d


Development
===========

To run all the tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========

1.0.0 (2020-07-30)
------------------

* First release on PyPI.


