Metadata-Version: 2.1
Name: clt-py
Version: 0.0.4
Summary: This packages provides methodes for calculating fiber-reinforced materials.
Home-page: https://github.com/axelschmidt91/clt_py
Author: Axel Schmidt
Author-email: schmidt.axel.91@gmail.com
License: MIT license
Keywords: clt_py
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: numpy (==1.18.1)

==========================
CLT Calculation for Python
==========================


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

.. image:: https://travis-ci.com/axelschmidt91/clt_py.svg?branch=master
        :target: https://travis-ci.com/axelschmidt91/clt_py

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

.. image:: https://pyup.io/repos/github/axelschmidt91/clt_py/shield.svg
        :target: https://pyup.io/repos/github/axelschmidt91/clt_py/
        :alt: Updates

.. image:: https://coveralls.io/repos/github/axelschmidt91/clt_py/badge.svg?branch=master
        :target: https://coveralls.io/github/axelschmidt91/clt_py?branch=master

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
        :target: https://github.com/psf/black



This packages provides methodes for calculating fiber-reinforced materials.


* Free software: MIT license
* Documentation: https://clt-py.readthedocs.io.


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


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

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).


Unreleased
----------
* changes:
    - version number 
    - long_description_conent_type in setup.py

0.0.4 (2020-01-24)
------------------

* changed:
    - requirements_dev.txt to updated packades
    - requirements.txt
* fixed:
    - upload to pypi with API Token


0.0.3 (2020-01-24)
------------------

* First release on PyPI.

* add class Material2D - base class for all materials used in this package.
* add class IsotropicMaterial - Material2D class for isotropic materials.
* add class AnisotropicMaterial - Material2D class for anisotropic materials.
* add class FiberReinforcedMaterialUD - Material2D class that combines two materials.
* add class Ply - generates defined ply/layer of Material2D.
* add class Laminate - combines mulitple Ply instances to composite laminate.
* dev setup:
    * add .pre-commit-config.yaml - formating with black
    * changed travis - add ``black --check`` on 'before_script' method
    * changed requirements_dev.txt
    * add requirements.txt
    * add tests for classes
    * fix tox python 3.8 and flake8 checking
    * add flake8 ignore: E501, W503, F841
* update mail adress
* docs:
    * changed usage.rst - new Version update to use package

0.0.2 (2020-01-22)
------------------
* setup of package
* first ideas of structure


