-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
316 additions
and
9,446 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
PIP_COMPILE := pipx run uv pip compile pyproject.toml --quiet | ||
|
||
ifeq ($(filter upgrade,$(MAKECMDGOALS)),upgrade) | ||
PIP_COMPILE += --upgrade | ||
endif | ||
|
||
.PHONY: all base uv upgrade | ||
|
||
all: base | ||
|
||
base: | ||
$(PIP_COMPILE) --output-file=requirements/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,14 @@ | ||
# `data-inclusion-analyse` | ||
|
||
Analyses des jeux de données des partenaires de data.inclusion | ||
|
||
## Analyses | ||
|
||
| Partenaire | Jeu de données | Date | Notebook | | ||
| --------------- | ------------------------ | ---------- | ------------------------------------------------------------ | | ||
| 1jeune1solution | benefits | (api) | [Notebook](./notebooks/1j1s/benefits.ipynb) | | ||
| cd35 | annuaire social | (api) | [Notebook](./notebooks/cd35/annuaire_social.ipynb) | | ||
| cd62 | wikisol 62 | 24/05/2022 | [Notebook](./notebooks/cd62/analyse-cd62.ipynb) | | ||
| odspep | ressources partenariales | 14/06/2022 | [Notebook](./notebooks/odspep/analyse.ipynb) | | ||
| siao | base siao | 26/07/2022 | [Notebook](./notebooks/siao/analyse.ipynb) | | ||
| soliguide | lieux et services | (api) | [Notebook](./notebooks/soliguide/analyse.ipynb) | | ||
| Mes Aides | garages solidaires | (api) | [Notebook](./notebooks/garages_solidaires/analyse-gs.ipynb) | | ||
| FINESS | finess | (api) | [Notebook](./notebooks/finess/analyse.ipynb) | | ||
| Etab. Publics | etablissements publics | (api) | [Notebook](./notebooks/etablissements-publics/Analyse.ipynb) | | ||
| cd93 | organismes de formation | 01/10/2022 | [Notebook](./notebooks/cd93/analyse.ipynb) | | ||
# `analyse` | ||
|
||
## Contribuer | ||
|
||
```bash | ||
# Create a new virtualenv in the project's root directory | ||
python3 -m venv .venv --prompt analyse | ||
|
||
# Activate the environment | ||
# init virtual env | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
pip install -U pip setuptools wheel | ||
pip install -r requirements/requirements.txt | ||
|
||
# Install dependencies | ||
pip install -r requirements.txt | ||
|
||
# Setup hook to clean notebook outputs | ||
# setup hook to clean notebook outputs | ||
git config --local include.path ../analyse/.gitconfig | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.