initial upload

This commit is contained in:
2023-06-22 10:34:18 +02:00
parent 6df897b44d
commit 5c621cf669
1030 changed files with 355394 additions and 49 deletions

View File

@@ -0,0 +1,58 @@
Metadata-Version: 1.1
Name: aem-gestion
Version: 1.0
Summary: aem_gestion
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Description: # README #
Cette application web permet aux collaborateurs de l'auto-école Marietton :
- de consulter et de gérer les planning des élèves depuis leur tablette
- de consulter les fiches élèves
- de consulter les examens
- de gérer les prospects et les devis pro
Elle est développée avec les composants open source suivants :
## Backend
- [Python](https://www.python.org/downloads/) 3.7
- [Pyramid web framework](https://trypyramid.com/) 1.10
- [MySQL server](https://mysql.com/) 5.7 sur Windows Server 2008 R2 Entreprise
- [Apache web server](https://apache.org/) 2.4 sur Debian GNU/Linux 9 (stretch)
## Frontend
- [Bootstrap framework](https://getbootstrap.com/) for CSS 3.3.7
- [Jquery](https://jquery.com/download/) for JavaScript 3.4.1
- Chameleon templates
- [FormValidation](https://formvalidation.io/) form validator 0.7.0
## Jquery Plugins
- [DataTables](https://datatables.net/) 1.10.20
- [Fullcalendar](https://fullcalendar.io/) 3.9.0
- [Fullcalendar Scheduler](https://fullcalendar.io/) 1.9.4
- [Jquery-ui et jquery-ui-themes](https://jqueryui.com/) 1.12.1
- [less.js](http://lesscss.org/) 3.11.1
- [moment.js](https://momentjs.com/) with-locales.min.js
[Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
0.0
---
- Initial version
Keywords: web wsgi bfg pylons pyramid
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Pyramid
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application

View File

@@ -0,0 +1,34 @@
CHANGES.txt
MANIFEST.in
README.md
development.ini
production.ini
setup.py
aem_gestion/__init__.py
aem_gestion/layout.py
aem_gestion/panels.py
aem_gestion/routes.py
aem_gestion/security.py
aem_gestion.egg-info/PKG-INFO
aem_gestion.egg-info/SOURCES.txt
aem_gestion.egg-info/dependency_links.txt
aem_gestion.egg-info/entry_points.txt
aem_gestion.egg-info/not-zip-safe
aem_gestion.egg-info/requires.txt
aem_gestion.egg-info/top_level.txt
aem_gestion/models/__init__.py
aem_gestion/models/crm.py
aem_gestion/models/default.py
aem_gestion/models/eleves.py
aem_gestion/models/examens.py
aem_gestion/models/parametres.py
aem_gestion/models/planning.py
aem_gestion/scripts/__init__.py
aem_gestion/views/__init__.py
aem_gestion/views/crm.py
aem_gestion/views/default.py
aem_gestion/views/eleves.py
aem_gestion/views/examens.py
aem_gestion/views/notfound.py
aem_gestion/views/parametres.py
aem_gestion/views/planning.py

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,4 @@
[paste.app_factory]
main = aem_gestion:main
[console_scripts]

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,16 @@
pyramid
SQLAlchemy==1.2.19
transaction
pyramid_chameleon
pyramid_debugtoolbar
pyramid_layout
pyramid_mailer
pyramid_tm
zope.sqlalchemy
waitress
docutils
jours_feries_france
mysqlclient
python-dateutil
zeep
user-agents

View File

@@ -0,0 +1 @@
aem_gestion