Metadata-Version: 2.0
Name: ovhspams
Version: 0.0.5
Summary: Gestion des SAPMS avec les API OVH
Home-page: UNKNOWN
Author: Frédéric KIEBER
Author-email: contact@frkb.fr
License: GNU GPLv3
Description-Content-Type: UNKNOWN
Keywords: web pyramid pylons spams ovh
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
Requires-Dist: plaster-pastedeploy
Requires-Dist: pyramid
Requires-Dist: pyramid-chameleon
Requires-Dist: pyramid-debugtoolbar
Requires-Dist: waitress
Requires-Dist: deform
Requires-Dist: ovh
Provides-Extra: testing
Requires-Dist: WebTest (>=1.3.1); extra == 'testing'
Requires-Dist: pytest; extra == 'testing'
Requires-Dist: pytest-cov; extra == 'testing'

Gestion des SAPMS
=================

Getting Started
---------------

- Change directory into your newly created project::

    cd ovhspams

- Create a Python virtual environment::

    python3 -m venv env

- Upgrade packaging tools::

    env/bin/pip install --upgrade pip setuptools

- Install the project in editable mode with its testing requirements::

    env/bin/pip install -e ".[testing]"

- Run your project's tests::

    env/bin/pytest

- Download ini files::

    wget http://static.frkb.fr/ovhspams/development.ini
    wget http://static.frkb.fr/ovhspams/production.ini

- Adapt ``domaines`` entry in ``[app:main]`` section from ini file
	see on https://api.ovh.com/ how to obtain keys.

- Run your project::

    env/bin/pserve development.ini
    or
    env/bin/pserve production.ini

- Acces your project:

  http://localhost:6543



Change log
----------

- **0.0.5** 2017/11/01

	Déplacement de la configuration des domaines et de leurs clés chez OVH
	dans les fichier .ini


