69 lines
1.9 KiB
Plaintext
69 lines
1.9 KiB
Plaintext
Metadata-Version: 2.1
|
|
Name: cao_osint
|
|
Version: 1.0
|
|
Summary: cao_osint
|
|
Home-page:
|
|
Author:
|
|
Author-email:
|
|
Keywords: web pyramid pylons
|
|
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_jinja2
|
|
Requires-Dist: pyramid_debugtoolbar
|
|
Requires-Dist: waitress
|
|
Requires-Dist: alembic
|
|
Requires-Dist: pyramid_retry
|
|
Requires-Dist: pyramid_layout
|
|
Requires-Dist: pyramid_tm
|
|
Requires-Dist: python-magic
|
|
Requires-Dist: SQLAlchemy
|
|
Requires-Dist: transaction
|
|
Requires-Dist: zope.sqlalchemy
|
|
Requires-Dist: wtforms
|
|
Requires-Dist: webhelpers2
|
|
Requires-Dist: passlib
|
|
Requires-Dist: markdown
|
|
Provides-Extra: testing
|
|
Requires-Dist: WebTest>=1.3.1; extra == "testing"
|
|
Requires-Dist: pytest>=3.7.4; extra == "testing"
|
|
Requires-Dist: pytest-cov; extra == "testing"
|
|
|
|
# README #
|
|
|
|
**cao_osint** est une application pour créer un blog simple. Elle est inspirée du tutorial [**pyramid_blogr**](https://docs.pylonsproject.org/projects/pyramid-blogr/en/latest/index.html).
|
|
|
|
## Fonctionnalités ##
|
|
|
|
Bien que **cao_osint** soit une application minimale et simple, elle possède toutes les fonctions nécessaire pour gérer un blog :
|
|
|
|
- Gestion des utilisateurs du blog (admin ou rédacteur)
|
|
- Authentification et autorisation des utilisateurs
|
|
- Gestion des posts du blog avec des statuts : *publié, brouillon ou privé*
|
|
- Gestion des tags (un post peut avoir un tag)
|
|
- Les posts sont rédigé avec le langage *Markdown*
|
|
- Possibilité de faire des recherches sur le titre et le corps des posts
|
|
|
|
## Add-on requis ##
|
|
|
|
- Python 3.7.1
|
|
- Pyramid 1.10
|
|
- SQLite 3.35.5
|
|
- pyramid-jinja2 2.7 : view templating
|
|
- wtforms 2.2.1 : form library
|
|
- webhelpers2 2.0 : various web building related helpers
|
|
- Markdown 3.4.1 :
|
|
|
|
|
|
### 1.0 (22.01.2023)
|
|
|
|
- version initiale
|
|
|
|
0.1
|
|
---
|
|
|
|
- Initial version.
|