OpenFisca-France 173.1.1__py3-none-any.whl → 174.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of OpenFisca-France might be problematic. Click here for more details.
- openfisca_france/model/prelevements_obligatoires/taxe_habitation/taxe_habitation_import_baremes_locaux.py +4 -4
- openfisca_france/model/prestations/aides_logement.py +10 -8
- openfisca_france/model/prestations/bail_reel_solidaire.py +11 -4
- openfisca_france/scripts/normalize_string_quotes.py +2 -2
- openfisca_france/scripts/performance/measure_tests_performance.py +3 -3
- {openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/METADATA +30 -85
- {openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/RECORD +10 -10
- {openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/WHEEL +0 -0
- {openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/licenses/LICENSE.AGPL.txt +0 -0
- {openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import csv
|
|
3
3
|
import codecs
|
|
4
|
-
import
|
|
4
|
+
import importlib
|
|
5
5
|
import openfisca_france
|
|
6
6
|
from numpy import fromiter
|
|
7
7
|
from openfisca_france.model.base import *
|
|
@@ -14,10 +14,10 @@ def preload_parametres_locaux_taxe_habitation(year = None, variable_to_load = No
|
|
|
14
14
|
assert variable_to_load is not None
|
|
15
15
|
assert year is not None
|
|
16
16
|
if os.path.isfile('{}/assets/taxe_habitation/parametres_th_{}.csv'.format(openfisca_france.__name__, year)):
|
|
17
|
-
with
|
|
18
|
-
openfisca_france.__name__
|
|
17
|
+
with importlib.resources.files(
|
|
18
|
+
openfisca_france.__name__).joinpath(
|
|
19
19
|
'assets/taxe_habitation/parametres_th_{}.csv'.format(year),
|
|
20
|
-
) as csv_file:
|
|
20
|
+
).open('rb') as csv_file:
|
|
21
21
|
utf8_reader = codecs.getreader('utf-8')
|
|
22
22
|
csv_reader = csv.DictReader(utf8_reader(csv_file))
|
|
23
23
|
return {
|
|
@@ -2,7 +2,7 @@ import csv
|
|
|
2
2
|
import codecs
|
|
3
3
|
import json
|
|
4
4
|
import logging
|
|
5
|
-
import
|
|
5
|
+
import importlib
|
|
6
6
|
import sys
|
|
7
7
|
|
|
8
8
|
from numpy import ceil, datetime64, fromiter, int16, logical_or as or_, logical_and as and_, logical_not as not_
|
|
@@ -1469,10 +1469,11 @@ zone_apl_by_depcom = None
|
|
|
1469
1469
|
def preload_zone_apl():
|
|
1470
1470
|
global zone_apl_by_depcom
|
|
1471
1471
|
if zone_apl_by_depcom is None:
|
|
1472
|
-
with
|
|
1473
|
-
openfisca_france.__name__
|
|
1474
|
-
|
|
1475
|
-
|
|
1472
|
+
with importlib.resources.files(
|
|
1473
|
+
openfisca_france.__name__
|
|
1474
|
+
).joinpath(
|
|
1475
|
+
'assets/apl/20110914_zonage.csv'
|
|
1476
|
+
).open('rb') as csv_file:
|
|
1476
1477
|
if sys.version_info < (3, 0):
|
|
1477
1478
|
csv_reader = csv.DictReader(csv_file)
|
|
1478
1479
|
else:
|
|
@@ -1484,10 +1485,11 @@ def preload_zone_apl():
|
|
|
1484
1485
|
for row in csv_reader
|
|
1485
1486
|
}
|
|
1486
1487
|
# Add subcommunes (arrondissements and communes associées), use the same value as their parent commune.
|
|
1487
|
-
with
|
|
1488
|
-
openfisca_france.__name__
|
|
1488
|
+
with importlib.resources.files(
|
|
1489
|
+
openfisca_france.__name__
|
|
1490
|
+
).joinpath(
|
|
1489
1491
|
'assets/apl/commune_depcom_by_subcommune_depcom.json',
|
|
1490
|
-
) as json_file:
|
|
1492
|
+
).open('rb') as json_file:
|
|
1491
1493
|
commune_depcom_by_subcommune_depcom = json.load(json_file)
|
|
1492
1494
|
for subcommune_depcom, commune_depcom in commune_depcom_by_subcommune_depcom.items():
|
|
1493
1495
|
zone_apl_by_depcom[subcommune_depcom] = zone_apl_by_depcom[commune_depcom]
|
|
@@ -2,12 +2,17 @@ from openfisca_france.model.base import *
|
|
|
2
2
|
import openfisca_france
|
|
3
3
|
import csv
|
|
4
4
|
import codecs
|
|
5
|
-
import
|
|
5
|
+
import importlib
|
|
6
6
|
import numpy as np
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
def bail_reel_solidaire_zones_elligibles():
|
|
10
|
-
with
|
|
10
|
+
with importlib.resources.files(
|
|
11
|
+
openfisca_france.__name__).joinpath(
|
|
12
|
+
'assets/zonage-communes/zonage-abc-juillet-2024.csv'
|
|
13
|
+
).open(
|
|
14
|
+
'rb'
|
|
15
|
+
) as csv_file:
|
|
11
16
|
utf8_reader = codecs.getreader('utf-8')
|
|
12
17
|
csv_reader = csv.DictReader(utf8_reader(csv_file), delimiter=';')
|
|
13
18
|
return {
|
|
@@ -25,7 +30,8 @@ class bail_reel_solidaire_zones_menage(Variable):
|
|
|
25
30
|
def formula(menage, period):
|
|
26
31
|
depcom = menage('depcom', period)
|
|
27
32
|
return np.fromiter(
|
|
28
|
-
(bail_reel_solidaire_zones_elligibles().get(
|
|
33
|
+
(bail_reel_solidaire_zones_elligibles().get(
|
|
34
|
+
depcom_cell.decode('utf-8')) for depcom_cell in depcom),
|
|
29
35
|
dtype='<U4' # String length max for zones (A, Abis, B1, B2, C)
|
|
30
36
|
)
|
|
31
37
|
|
|
@@ -76,5 +82,6 @@ class bail_reel_solidaire(Variable):
|
|
|
76
82
|
def formula(menage, period):
|
|
77
83
|
plafond_total = menage('bail_reel_solidaire_plafond_total', period)
|
|
78
84
|
zones_menage = menage('bail_reel_solidaire_zones_menage', period)
|
|
79
|
-
rfr = menage.sum(menage.members.foyer_fiscal(
|
|
85
|
+
rfr = menage.sum(menage.members.foyer_fiscal(
|
|
86
|
+
'rfr', period.n_2), role=FoyerFiscal.DECLARANT_PRINCIPAL)
|
|
80
87
|
return where(zones_menage is not None, rfr <= plafond_total, False)
|
|
@@ -22,10 +22,10 @@ def iterate_tokens(file_path):
|
|
|
22
22
|
for token in tokenize.generate_tokens(python_file.readline):
|
|
23
23
|
if token.type == tokenize.STRING:
|
|
24
24
|
token = token._replace(string=DOUBLE_QUOTE_DOCSTRING_RE.sub(
|
|
25
|
-
"\g<prefix>'''\g<content>'''", # noqa: W605
|
|
25
|
+
r"\g<prefix>'''\g<content>'''", # noqa: W605
|
|
26
26
|
token.string))
|
|
27
27
|
token = token._replace(string=DOUBLE_QUOTE_STRING_RE.sub(
|
|
28
|
-
"\g<prefix>'\g<content>'", # noqa: W605
|
|
28
|
+
r"\g<prefix>'\g<content>'", # noqa: W605
|
|
29
29
|
token.string))
|
|
30
30
|
yield token
|
|
31
31
|
|
|
@@ -10,7 +10,7 @@ Usage example:
|
|
|
10
10
|
import os
|
|
11
11
|
import time
|
|
12
12
|
import logging
|
|
13
|
-
import
|
|
13
|
+
import importlib
|
|
14
14
|
|
|
15
15
|
from openfisca_core.tools.test_runner import run_tests
|
|
16
16
|
from openfisca_france import CountryTaxBenefitSystem
|
|
@@ -30,8 +30,8 @@ tbs = CountryTaxBenefitSystem()
|
|
|
30
30
|
time_spent_tbs = time.time() - start_time_tbs
|
|
31
31
|
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
yaml_tests_dir =
|
|
33
|
+
folder = os.path.join('tests', 'mes-aides.gouv.fr')
|
|
34
|
+
yaml_tests_dir = importlib.resources.path('OpenFisca-France', folder)
|
|
35
35
|
|
|
36
36
|
|
|
37
37
|
# Time openfisca-run-test runner
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: OpenFisca-France
|
|
3
|
-
Version:
|
|
3
|
+
Version: 174.0.1
|
|
4
4
|
Summary: OpenFisca Rules as Code model for France.
|
|
5
5
|
Author-email: OpenFisca Team <contact@openfisca.fr>
|
|
6
6
|
Project-URL: Homepage, https://github.com/openfisca/openfisca-france
|
|
@@ -22,17 +22,6 @@ Description-Content-Type: text/markdown
|
|
|
22
22
|
License-File: LICENSE.AGPL.txt
|
|
23
23
|
Requires-Dist: numpy<2,>=1.24.3
|
|
24
24
|
Requires-Dist: openfisca-core[web-api]<44,>=43
|
|
25
|
-
Requires-Dist: setuptools
|
|
26
|
-
Provides-Extra: dev
|
|
27
|
-
Requires-Dist: autopep8<3.0,>=2.0.2; extra == "dev"
|
|
28
|
-
Requires-Dist: Flake8-pyproject<2.0.0,>=1.2.3; extra == "dev"
|
|
29
|
-
Requires-Dist: flake8<7.0.0,>=6.0.0; extra == "dev"
|
|
30
|
-
Requires-Dist: flake8-print<6.0.0,>=5.0.0; extra == "dev"
|
|
31
|
-
Requires-Dist: flake8-quotes>=3.3.2; extra == "dev"
|
|
32
|
-
Requires-Dist: pytest; extra == "dev"
|
|
33
|
-
Requires-Dist: scipy<2.0,>=1.10.1; extra == "dev"
|
|
34
|
-
Requires-Dist: requests<3.0,>=2.28.2; extra == "dev"
|
|
35
|
-
Requires-Dist: yamllint<2.0,>=1.30.0; extra == "dev"
|
|
36
25
|
Provides-Extra: inversion-revenus
|
|
37
26
|
Requires-Dist: scipy<2.0,>=1.10.1; extra == "inversion-revenus"
|
|
38
27
|
Provides-Extra: de-net-a-brut
|
|
@@ -81,55 +70,16 @@ L'ensembles des endpoints sont décrits dans la [documentation Swagger](https://
|
|
|
81
70
|
|
|
82
71
|
## Installation
|
|
83
72
|
|
|
84
|
-
Ce paquet requiert [Python 3.9](https://www.python.org/downloads/release/python-390/) et [pip](https://pip.pypa.io/en/stable/installing/) ou [conda](https://www.anaconda.com/products/individual).
|
|
73
|
+
Ce paquet requiert [Python 3.9](https://www.python.org/downloads/release/python-390/) et [pip](https://pip.pypa.io/en/stable/installing/) ou [conda](https://www.anaconda.com/products/individual) ou [UV](https://docs.astral.sh/uv/).
|
|
85
74
|
|
|
86
75
|
Plateformes supportées :
|
|
87
76
|
- distributions GNU/Linux (en particulier Debian and Ubuntu) ;
|
|
88
77
|
- Mac OS X ;
|
|
89
|
-
- Windows : Nous recommandons d'utiliser [conda](https://www.anaconda.com/products/individual), voir la procédure ci-dessous [Installez un environnement virtuel avec conda](./README.md#installez-un-environnement-virtuel-avec-conda) ; OpenFisca fonctionne également dans le [sous-système Windows pour Linux (WSL)](https://docs.microsoft.com/fr-fr/windows/wsl/install). Dans ce dernier cas, il suffit de suivre la procédure pour Linux car vous êtes alors dans un environnement Linux.
|
|
78
|
+
- Windows : Nous recommandons d'utiliser [UV](https://docs.astral.sh/uv/) car [conda](https://www.anaconda.com/products/individual) ne va surement plus être supporté par la communauté OpenFisca, si vous souhaitez tout de même l'utiliser, voir la procédure ci-dessous [Installez un environnement virtuel avec conda](./README.md#installez-un-environnement-virtuel-avec-conda) ; OpenFisca fonctionne également dans le [sous-système Windows pour Linux (WSL)](https://docs.microsoft.com/fr-fr/windows/wsl/install). Dans ce dernier cas, il suffit de suivre la procédure pour Linux car vous êtes alors dans un environnement Linux.
|
|
90
79
|
|
|
91
80
|
Pour les autres OS : si vous pouvez exécuter Python et Numpy, l'installation d'OpenFisca devrait fonctionner.
|
|
92
81
|
|
|
93
|
-
###
|
|
94
|
-
|
|
95
|
-
Nous recommandons l'utilisation d'un [environnement virtuel](https://virtualenv.pypa.io/en/stable/) (_virtualenv_) avec un gestionnaire de _virtualenv_ tel que [Pew](https://github.com/berdario/pew). Vous pouvez aussi utiliser le gestionnaire d'environnemnt officiel de Python : [venv](https://docs.python.org/3/library/venv.html).
|
|
96
|
-
|
|
97
|
-
- Un _[virtualenv](https://virtualenv.pypa.io/en/stable/)_ crée un environnement pour les besoins spécifiques du projet sur lequel vous travaillez.
|
|
98
|
-
- Un gestionnaire de _virtualenv_, tel que [Pew](https://github.com/berdario/pew), vous permet de facilement créer, supprimer et naviguer entre différents projets.
|
|
99
|
-
|
|
100
|
-
Pour installer Pew, lancez une fenêtre de terminal et suivez ces instructions :
|
|
101
|
-
|
|
102
|
-
```sh
|
|
103
|
-
python --version # Python 3.9.0 ou plus récent devrait être installé sur votre ordinateur.
|
|
104
|
-
# Si non, téléchargez-le sur http://www.python.org et téléchargez pip.
|
|
105
|
-
```
|
|
106
|
-
|
|
107
|
-
```sh
|
|
108
|
-
pip install --upgrade pip
|
|
109
|
-
pip install pew
|
|
110
|
-
```
|
|
111
|
-
Créez un nouveau _virtualenv_ nommé **openfisca** et configurez-le avec python 3.9 :
|
|
112
|
-
|
|
113
|
-
```sh
|
|
114
|
-
pew new openfisca --python=python3.9
|
|
115
|
-
# Si demandé, répondez "Y" à la question sur la modification du fichier de configuration de votre shell
|
|
116
|
-
```
|
|
117
|
-
Le _virtualenv_ **openfisca** sera alors activé, c'est-à-dire que les commandes suivantes s'exécuteront directement dans l'environnement virtuel. Vous verrez dans votre terminal :
|
|
118
|
-
|
|
119
|
-
```sh
|
|
120
|
-
Installing setuptools, pip, wheel...done.
|
|
121
|
-
Launching subshell in virtual environment. Type 'exit' or 'Ctrl+D' to return.
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
Informations complémentaires :
|
|
125
|
-
- sortez du _virtualenv_ en tapant `exit` (or Ctrl-D) ;
|
|
126
|
-
- re-rentrez en tapant `pew workon openfisca` dans votre terminal.
|
|
127
|
-
|
|
128
|
-
Bravo :tada: Vous êtes prêt·e à installer OpenFisca-France !
|
|
129
|
-
|
|
130
|
-
Nous proposons deux procédures d'installation. Choisissez l'installation A ou B ci-dessous en fonction de l'usage que vous souhaitez faire d'OpenFisca-France.
|
|
131
|
-
|
|
132
|
-
### A. Installation minimale (pip install)
|
|
82
|
+
### A. Installation minimale, sans les sources
|
|
133
83
|
|
|
134
84
|
Suivez cette installation si vous souhaitez :
|
|
135
85
|
- procéder à des calculs sur une large population ;
|
|
@@ -141,26 +91,28 @@ Pour pouvoir modifier OpenFisca-France, consultez l'[Installation avancée](#b-i
|
|
|
141
91
|
|
|
142
92
|
#### Installer OpenFisca-France avec pip install
|
|
143
93
|
|
|
144
|
-
|
|
94
|
+
Placer vous dans le répertoire où vous souhaitez faire vos développements, puis :
|
|
145
95
|
|
|
146
96
|
```sh
|
|
147
|
-
|
|
148
|
-
#Si non, vérifiez que vous passez --python=python3.9 lors de la création de votre environnement virtuel.
|
|
97
|
+
uv init
|
|
149
98
|
```
|
|
150
99
|
|
|
151
|
-
|
|
152
|
-
pip --version # Devrait afficher au moins 9.0.x
|
|
153
|
-
#Si non, exécutez "pip install --upgrade pip".
|
|
154
|
-
```
|
|
155
|
-
Installez OpenFisca-France :
|
|
100
|
+
Ensuite, installez OpenFisca-France :
|
|
156
101
|
|
|
157
102
|
```sh
|
|
158
|
-
|
|
103
|
+
uv add openfisca-france
|
|
104
|
+
uv add openfisca-core[web-api]
|
|
159
105
|
```
|
|
160
|
-
> _Note: La deuxième
|
|
106
|
+
> _Note: La deuxième commande est optionnelle. Elle vous permet d'installer l'API Web d'OpenFisca._
|
|
161
107
|
|
|
162
108
|
Félicitations :tada: OpenFisca-France est prêt à être utilisé !
|
|
163
109
|
|
|
110
|
+
Vous pouvez vous assurer que votre installation s'est bien passée en exécutant :
|
|
111
|
+
|
|
112
|
+
```sh
|
|
113
|
+
uv run openfisca -h
|
|
114
|
+
```
|
|
115
|
+
|
|
164
116
|
#### Prochaines étapes
|
|
165
117
|
|
|
166
118
|
- Apprenez à utiliser OpenFisca avec nos [tutoriels](https://openfisca.org/doc/) (en anglais).
|
|
@@ -183,36 +135,23 @@ Premièrement, assurez-vous que [Git](https://www.git-scm.com/) est bien install
|
|
|
183
135
|
|
|
184
136
|
Dans votre _virtualenv_, assurez-vous que vous êtes dans le répertoire où vous souhaitez cloner OpenFisca-France.
|
|
185
137
|
|
|
186
|
-
Vérifiez les pré-requis :
|
|
187
|
-
|
|
188
|
-
```sh
|
|
189
|
-
python --version # Devrait afficher "Python 3.9.xx".
|
|
190
|
-
#Si non, vérifiez que vous passez --python=python3.9 lors de la création de votre environnement virtuel.
|
|
191
|
-
```
|
|
192
|
-
|
|
193
|
-
```sh
|
|
194
|
-
pip --version # Devrait afficher au moins 23.0.
|
|
195
|
-
#Si non, exécutez "pip install --upgrade pip".
|
|
196
|
-
```
|
|
197
|
-
|
|
198
138
|
Clonez OpenFisca-France sur votre machine :
|
|
199
139
|
|
|
200
140
|
```sh
|
|
201
141
|
git clone https://github.com/openfisca/openfisca-france.git
|
|
202
142
|
cd openfisca-france
|
|
203
|
-
pip install --editable .[dev] && pip install openfisca-core[web-api]
|
|
204
143
|
```
|
|
205
144
|
|
|
206
145
|
Vous pouvez vous assurer que votre installation s'est bien passée en exécutant :
|
|
207
146
|
|
|
208
147
|
```sh
|
|
209
|
-
pytest tests/test_basics.py # Ces test peuvent prendre jusqu'à 60 secondes.
|
|
148
|
+
uv run pytest tests/test_basics.py # Ces test peuvent prendre jusqu'à 60 secondes.
|
|
210
149
|
```
|
|
211
150
|
:tada: OpenFisca-France est prêt à être utilisé !
|
|
212
151
|
|
|
213
152
|
### Installez un environnement virtuel avec conda
|
|
214
153
|
|
|
215
|
-
Nous conseillons cette procédure pour les personnes utilisant Windows
|
|
154
|
+
Nous ne conseillons plus cette procédure, même pour les personnes utilisant Windows, il est préférable d'utiliser `uv`. En effet, nous pensons arrêter de supporter `conda` dans OpenFisca. Si vous en avez besoin, n'hésitez pas à ouvrir une issue sur le dépôt GitHub d'OpenFisca-France et nous expliquer votre cas d'utilisation.
|
|
216
155
|
|
|
217
156
|
Ceci vous permet d'obtenir en une seule installation :
|
|
218
157
|
- Python
|
|
@@ -249,23 +188,29 @@ A noter que l'installation d'Openfisca-France peut lever une erreur sur certaine
|
|
|
249
188
|
Pour faire tourner les tests d'OpenFisca-France, exécutez la commande suivante :
|
|
250
189
|
|
|
251
190
|
```sh
|
|
252
|
-
make test
|
|
191
|
+
uv run make test
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
Pour utiliser une version spécifique de Python :
|
|
195
|
+
|
|
196
|
+
```sh
|
|
197
|
+
uv run --python 3.12.3 make test
|
|
253
198
|
```
|
|
254
199
|
|
|
255
200
|
## Style
|
|
256
201
|
|
|
257
202
|
Ce dépôt adhère à un style de code précis, et on vous invite à le suivre pour que vos contributions soient intégrées au plus vite.
|
|
258
203
|
|
|
259
|
-
L'analyse de style est déjà exécutée avec `make test`. Pour le faire tourner de façon indépendante :
|
|
204
|
+
L'analyse de style est déjà exécutée avec `uv run make test`. Pour le faire tourner de façon indépendante :
|
|
260
205
|
|
|
261
206
|
```sh
|
|
262
|
-
make check-style
|
|
207
|
+
uv run make check-style
|
|
263
208
|
```
|
|
264
209
|
|
|
265
210
|
Pour corriger les erreurs de style de façon automatique:
|
|
266
211
|
|
|
267
212
|
```sh
|
|
268
|
-
make format-style
|
|
213
|
+
uv run make format-style
|
|
269
214
|
```
|
|
270
215
|
|
|
271
216
|
Pour corriger les erreurs de style de façon automatique à chaque fois que vous faites un _commit_ :
|
|
@@ -287,10 +232,10 @@ END
|
|
|
287
232
|
Il est possible de servir l'API Web d'OpenFisca-France sur votre propre serveur :
|
|
288
233
|
|
|
289
234
|
```sh
|
|
290
|
-
openfisca serve
|
|
235
|
+
uv run openfisca serve
|
|
291
236
|
```
|
|
292
237
|
|
|
293
|
-
Pour en savoir plus sur la commande `openfisca serve` et ses options, consultez la [documentation de référence](https://openfisca.org/doc/openfisca-python-api/openfisca_serve.html).
|
|
238
|
+
Pour en savoir plus sur la commande `uv run openfisca serve` et ses options, consultez la [documentation de référence](https://openfisca.org/doc/openfisca-python-api/openfisca_serve.html).
|
|
294
239
|
|
|
295
240
|
Testez votre installation en requêtant la commande suivante :
|
|
296
241
|
|
|
@@ -74,17 +74,17 @@ openfisca_france/model/prelevements_obligatoires/prelevements_sociaux/cotisation
|
|
|
74
74
|
openfisca_france/model/prelevements_obligatoires/prelevements_sociaux/cotisations_sociales/travail_totaux.py,sha256=vHJWfH0s0BYqbup9pcZisAI3cKGXlmBTdLYzWJOxgNA,9967
|
|
75
75
|
openfisca_france/model/prelevements_obligatoires/taxe_habitation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
76
|
openfisca_france/model/prelevements_obligatoires/taxe_habitation/taxe_habitation.py,sha256=-VDWVv6weZqQhPov1SA35Xl8w09AHV9ZXYPBdKimk_U,29326
|
|
77
|
-
openfisca_france/model/prelevements_obligatoires/taxe_habitation/taxe_habitation_import_baremes_locaux.py,sha256=
|
|
77
|
+
openfisca_france/model/prelevements_obligatoires/taxe_habitation/taxe_habitation_import_baremes_locaux.py,sha256=OQRsRpfqP4djuwybokV9IEayDbDkn8GbFdhgTwRC7Xs,14915
|
|
78
78
|
openfisca_france/model/prestations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
openfisca_france/model/prestations/agepi.py,sha256=QRjafsxsObAjW2A31mzrOmXnzmKx0OWvlko7qpeRyj0,15841
|
|
80
80
|
openfisca_france/model/prestations/aide_alimentation_etudiants_eloignes.py,sha256=iO35OV8iDexv0yiQCbOpQ4sIZvfkRSAP5xuztGt-qa4,1779
|
|
81
81
|
openfisca_france/model/prestations/aide_mobilite.py,sha256=SqzPIkkEZAgKoEbc73d3bhsYhFxZaN1o2Ik4gTm7VWY,20560
|
|
82
82
|
openfisca_france/model/prestations/aide_permis_demandeur_emploi.py,sha256=7V8gVzI9Rgg60lxqddrrIqhjqe06J2GfMQoSXKrdY7I,3410
|
|
83
83
|
openfisca_france/model/prestations/aide_permis_pro_btp.py,sha256=bzh9cDpJetqn72S2ziQJlhZuJrtOw-tYSDBOYKIML48,2258
|
|
84
|
-
openfisca_france/model/prestations/aides_logement.py,sha256=
|
|
84
|
+
openfisca_france/model/prestations/aides_logement.py,sha256=YnvMnZD3ffC2nZWwLK0LCWKEHIdJ7s8pzUHldEr3Do4,92253
|
|
85
85
|
openfisca_france/model/prestations/alimentation.py,sha256=3gkbQrPdobAHmroJiG07ajxzWjLlyMhMh6kMvg4s4Hk,2350
|
|
86
86
|
openfisca_france/model/prestations/autonomie.py,sha256=7UpuhDO-LFjwbq3UWSDyOKJCsTw1rx8O-tS3dG-MBn8,19394
|
|
87
|
-
openfisca_france/model/prestations/bail_reel_solidaire.py,sha256=
|
|
87
|
+
openfisca_france/model/prestations/bail_reel_solidaire.py,sha256=7nSL3HhQdZ5VgPx_La3vCY4rMnhWqowxmaae1tVD3f4,3261
|
|
88
88
|
openfisca_france/model/prestations/cheque_energie.py,sha256=YsmPzfUhs4P7CW5ePrOkBG-2iqeMeuFmfDyR0zKMeLg,6037
|
|
89
89
|
openfisca_france/model/prestations/complement_are.py,sha256=A3w76QuTfglsUmErWLpRbrFHqPECnZT3uDE1KgJWcTc,16530
|
|
90
90
|
openfisca_france/model/prestations/depart1825.py,sha256=2TJYxttcBJbSqpqs-3Wh6yB1-zARnnR396kkgQx_Quw,2528
|
|
@@ -4111,7 +4111,7 @@ openfisca_france/scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
4111
4111
|
openfisca_france/scripts/check_path_length.py,sha256=EoALe46BHJpiB8rJUR5N46Rrsf3yAVITXuQ--HytPBo,2135
|
|
4112
4112
|
openfisca_france/scripts/download_mes_aides_tests.py,sha256=WAPqbwoC8C-KyaTgWJAQuaPHlhFTQkMyDT0nSlxFYsM,5849
|
|
4113
4113
|
openfisca_france/scripts/inspect_dgfip_variable.py,sha256=O2fllL4LuLT5CfCmEz1vhID4ofZ7Gb3JPdPAFy4OltY,3003
|
|
4114
|
-
openfisca_france/scripts/normalize_string_quotes.py,sha256=
|
|
4114
|
+
openfisca_france/scripts/normalize_string_quotes.py,sha256=w8ApNd0C5qG7NF4gcty0-UM9LR-R5UuYEKDdPk62xvw,1672
|
|
4115
4115
|
openfisca_france/scripts/migrations/xml_to_yaml_france.py,sha256=5p63J66X_TC46VcJ0Kt75Yi9uCzqgp9Vijfb1B_LGVg,1048
|
|
4116
4116
|
openfisca_france/scripts/parameters/explore_parameters_unit.py,sha256=XxvX7TLRFkhCg5pdkqNeY5JLy8hxJw4T3OX0hio8RgE,3201
|
|
4117
4117
|
openfisca_france/scripts/parameters/reduce_parameters_paths.py,sha256=OMxLYULxTHs_WFfI8V44nBc6M4gS8citC_HjRUPH-AI,4198
|
|
@@ -4120,11 +4120,11 @@ openfisca_france/scripts/performance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
|
|
|
4120
4120
|
openfisca_france/scripts/performance/measure_calculations_performance.py,sha256=SpD9strcHfajTabcIpr1XKtBJw71W4kNnFumeP8Xdw4,13721
|
|
4121
4121
|
openfisca_france/scripts/performance/measure_circleci_builds_diff.py,sha256=BFXbuQmIWL3Y9dtoVosYKX2rzrrLfVoelKXkBdOjCeY,4322
|
|
4122
4122
|
openfisca_france/scripts/performance/measure_spiral_performances.py,sha256=cQIxERPJJrihov-9245DFeC6p9MfNPJVYj8-86qcE-k,3232
|
|
4123
|
-
openfisca_france/scripts/performance/measure_tests_performance.py,sha256=
|
|
4123
|
+
openfisca_france/scripts/performance/measure_tests_performance.py,sha256=MKrNJont9a0KEgZMy-QSiOx6hC5HUPDi377UV71_rS8,1822
|
|
4124
4124
|
openfisca_france/situation_examples/__init__.py,sha256=BTRmrqk9lsjfhtPXsYcsWqXFEYyFpgLcxNs6oJsy8zk,262
|
|
4125
4125
|
openfisca_france/situation_examples/couple.json,sha256=Ot1x4wl3IS-2-10X3V7ZUokkOMXi96s-xK7A0gNvRF4,862
|
|
4126
|
-
openfisca_france-
|
|
4127
|
-
openfisca_france-
|
|
4128
|
-
openfisca_france-
|
|
4129
|
-
openfisca_france-
|
|
4130
|
-
openfisca_france-
|
|
4126
|
+
openfisca_france-174.0.1.dist-info/licenses/LICENSE.AGPL.txt,sha256=2N5ReRelkdqkR9a-KP-y-shmcD5P62XoYiG-miLTAzo,34519
|
|
4127
|
+
openfisca_france-174.0.1.dist-info/METADATA,sha256=X1yTCro4Bjkjsv0uCXADC-r1zoRYj-Ersl16AFgGmc0,18374
|
|
4128
|
+
openfisca_france-174.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4129
|
+
openfisca_france-174.0.1.dist-info/top_level.txt,sha256=1LbD6QJWehKGIcjtaJ45tbQOSDiFEXOlIdgWRI_jaHU,17
|
|
4130
|
+
openfisca_france-174.0.1.dist-info/RECORD,,
|
|
File without changes
|
{openfisca_france-173.1.1.dist-info → openfisca_france-174.0.1.dist-info}/licenses/LICENSE.AGPL.txt
RENAMED
|
File without changes
|
|
File without changes
|