diff --git a/README.md b/README.md index ccb4d65..a605318 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# notes_analysis +# Repytex -Outils pour analyser les notes de mes élèves et pour leurs créer des bilans \ No newline at end of file +Outils pour analyser les notes de mes élèves et pour leurs créer des bilans. diff --git a/notes_tools/__init__.py b/Repytex/__init__.py similarity index 100% rename from notes_tools/__init__.py rename to Repytex/__init__.py diff --git a/notes_tools/generate_reports_main.py b/Repytex/generate_reports_main.py similarity index 100% rename from notes_tools/generate_reports_main.py rename to Repytex/generate_reports_main.py diff --git a/notes_tools/reports/__init__.py b/Repytex/reports/__init__.py similarity index 100% rename from notes_tools/reports/__init__.py rename to Repytex/reports/__init__.py diff --git a/notes_tools/reports/eval_reports.py b/Repytex/reports/eval_reports.py similarity index 100% rename from notes_tools/reports/eval_reports.py rename to Repytex/reports/eval_reports.py diff --git a/notes_tools/reports/filters.py b/Repytex/reports/filters.py similarity index 100% rename from notes_tools/reports/filters.py rename to Repytex/reports/filters.py diff --git a/notes_tools/reports/produce_compile.py b/Repytex/reports/produce_compile.py similarity index 100% rename from notes_tools/reports/produce_compile.py rename to Repytex/reports/produce_compile.py diff --git a/notes_tools/reports/reports_tools.py b/Repytex/reports/reports_tools.py similarity index 100% rename from notes_tools/reports/reports_tools.py rename to Repytex/reports/reports_tools.py diff --git a/notes_tools/reports/templates/tpl_reports.tex b/Repytex/reports/templates/tpl_reports.tex similarity index 100% rename from notes_tools/reports/templates/tpl_reports.tex rename to Repytex/reports/templates/tpl_reports.tex diff --git a/notes_tools/reports/templates/tpl_reports_eval.tex b/Repytex/reports/templates/tpl_reports_eval.tex similarity index 100% rename from notes_tools/reports/templates/tpl_reports_eval.tex rename to Repytex/reports/templates/tpl_reports_eval.tex diff --git a/notes_tools/reports/templates/tpl_reports_term.tex b/Repytex/reports/templates/tpl_reports_term.tex similarity index 100% rename from notes_tools/reports/templates/tpl_reports_term.tex rename to Repytex/reports/templates/tpl_reports_term.tex diff --git a/notes_tools/reports/term_reports.py b/Repytex/reports/term_reports.py similarity index 100% rename from notes_tools/reports/term_reports.py rename to Repytex/reports/term_reports.py diff --git a/notes_tools/tools/__init__.py b/Repytex/tools/__init__.py similarity index 100% rename from notes_tools/tools/__init__.py rename to Repytex/tools/__init__.py diff --git a/notes_tools/tools/bareme.py b/Repytex/tools/bareme.py similarity index 100% rename from notes_tools/tools/bareme.py rename to Repytex/tools/bareme.py diff --git a/notes_tools/tools/df_marks_manip.py b/Repytex/tools/df_marks_manip.py similarity index 100% rename from notes_tools/tools/df_marks_manip.py rename to Repytex/tools/df_marks_manip.py diff --git a/notes_tools/tools/evaluation.py b/Repytex/tools/evaluation.py similarity index 100% rename from notes_tools/tools/evaluation.py rename to Repytex/tools/evaluation.py diff --git a/notes_tools/tools/extract.py b/Repytex/tools/extract.py similarity index 100% rename from notes_tools/tools/extract.py rename to Repytex/tools/extract.py diff --git a/notes_tools/tools/marks_plottings.py b/Repytex/tools/marks_plottings.py similarity index 100% rename from notes_tools/tools/marks_plottings.py rename to Repytex/tools/marks_plottings.py diff --git a/notes_tools/tools/plottings.py b/Repytex/tools/plottings.py similarity index 100% rename from notes_tools/tools/plottings.py rename to Repytex/tools/plottings.py diff --git a/notes_tools/tools/skills_tools.py b/Repytex/tools/skills_tools.py similarity index 100% rename from notes_tools/tools/skills_tools.py rename to Repytex/tools/skills_tools.py diff --git a/notes_tools/tools/term.py b/Repytex/tools/term.py similarity index 100% rename from notes_tools/tools/term.py rename to Repytex/tools/term.py diff --git a/notes_tools/tools/test/test_df_marks_manip.py b/Repytex/tools/test/test_df_marks_manip.py similarity index 100% rename from notes_tools/tools/test/test_df_marks_manip.py rename to Repytex/tools/test/test_df_marks_manip.py diff --git a/notes_tools/tools/test/test_extract.py b/Repytex/tools/test/test_extract.py similarity index 100% rename from notes_tools/tools/test/test_extract.py rename to Repytex/tools/test/test_extract.py diff --git a/setup.py b/setup.py index f36c780..9405270 100644 --- a/setup.py +++ b/setup.py @@ -3,30 +3,27 @@ from setuptools import setup, find_packages -#import generate_bilan -#import notes_tools - -setup(name="notes_analysis", - version = "0.1", - description = "Outils d'analyse de notes", - author = "Benjamin Bertrand", - include_package_data=True, - packages=find_packages(), - install_requires=['jinja2', - 'pandas', - 'xlrd', - 'path.py', - ], - entry_points = { - "console_scripts": ['generate_bilan = notes_tools.generate_reports_main:main'] - }, - zip_safe=False - ) - +setup( + name="repytex", + version="0.1", + description="Création de rapport et analyses de notes", + author="Benjamin Bertrand", + include_package_data=True, + packages=find_packages(), + install_requires=[ + 'jinja2', + 'pandas', + 'xlrd', + 'path.py', + ], + entry_points={ + "console_scripts": ['repytex = repytex.generate_reports_main:main'] + }, + zip_safe=False + ) # ----------------------------- # Reglages pour 'vim' # vim:set autoindent expandtab tabstop=4 shiftwidth=4: -# cursor: 16 del - +# cursor: 16 del