Metadata-Version: 2.1
Name: teal
Version: 0.2.0a41
Summary: RESTful Flask for big applications.
Home-page: https://github.com/ereuse/teal
Author: Xavier Bustamante Talavera
Author-email: xavier@bustawin.com
License: BSD
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: anytree
Requires-Dist: apispec
Requires-Dist: apispec-webframeworks
Requires-Dist: boltons
Requires-Dist: ereuse-utils[cli,naming,session,test] (>=0.4.0b21)
Requires-Dist: flask (>=1.0)
Requires-Dist: flask-sqlalchemy (>=2.5.1)
Requires-Dist: sqlalchemy-utils[color,password,phone]
Requires-Dist: marshmallow (==3.0.0b11)
Requires-Dist: marshmallow-enum
Requires-Dist: webargs
Requires-Dist: flask-cors
Requires-Dist: click-spinner
Requires-Dist: Werkzeug (==2.0.3)

# Teal

![teal-logo](docs/teal-logo.svg)

(An intent of an) opinionated RESTful Flask for big applications.

In development...


Logo and some icons made by [Freepik](http://www.freepik.com) from
[Flaticon](https://www.flaticon.com/), licensed by
[CC 3.0 BY](http://creativecommons.org/licenses/by/3.0/).

## How to run tests
```bash
# clone repository
git clone git@github.com:eReuse/teal.git

# prepare venv & install dependencies
export ENV_NAME='env'
python3 -m venv $ENV_NAME
source $ENV_NAME/bin/activate
pip install wheel pytest==3.7.2
pip install -r tests/requirements.txt

# run it
pytest --maxfail=5 tests/
```
