Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 4055f86cca4338ae652e08a1ae8cb555c9109696
  • master default protected
  • Composant-BudgetTotalAmount-pour-affichage-vue-globale-budget
  • ajout_pfu_budgétaire
  • 366-signe-a-cote-du-droit-en-vigueur-sur-l-ui-pour-indiquer-que-la-reforme-a-eu-lieu-mais-qu-elle-n
  • suppression_allegements_specifiques
  • budgetaire_retraites_plf
  • doc-script-gen-off-tests
  • revalo_retraites
  • 381-pb-affichage-labels-des-parametres-sur-plus-de-3-lignes
  • ajoute-duplicate-aide-logement
  • poc_castype_ia
  • parametres-editables-budget
  • ui-parametres
  • 355-les-dispositifs-prestations-sociales-du-graphique-se-cachent-montrent-en-meme-temps-2
  • 358-les-variables-dont-le-montant-est-nul-apparaissent-en-bleu-et-non-cliquables
  • 356-ajuster-la-largeur-sur-les-graphiques-budgetaires
  • incoherence_cas_type_0
  • fix-ui-suppression-tranches-baremes
  • ajout-agregat-cehr-version-plf
  • impact_carbone
  • 0.0.1265
  • 0.0.1264
  • 0.0.1263
  • 0.0.1262
  • 0.0.1261
  • 0.0.1260
  • 0.0.1259
  • 0.0.1258
  • 0.0.1257
  • 0.0.1256
  • 0.0.1255
  • 0.0.1254
  • 0.0.1253
  • 0.0.1252
  • 0.0.1251
  • 0.0.1250
  • 0.0.1249
  • 0.0.1248
  • 0.0.1247
  • 0.0.1246
41 results

tailwind.config.ts

Blame
  • setup.py 1.75 KiB
    # -*- coding: utf-8 -*-
    
    from setuptools import setup, find_packages
    
    setup(
        name = "OpenFisca-France-Dotations-Locales",
        version = "1.0.0",
        author = "LexImpact Team",
        author_email = "leximpact@an.fr",
        classifiers=[
            "Development Status :: 5 - Production/Stable",
            "License :: OSI Approved :: GNU Affero General Public License v3",
            "Operating System :: POSIX",
            "Programming Language :: Python",
            "Programming Language :: Python :: 3.7",
            "Topic :: Scientific/Engineering :: Information Analysis",
            ],
        description = "[EN] OpenFisca tax and benefit system for France State endowments to local authorities. \
            [FR] Modèle de microsimulation OpenFisca dédié aux dotations de l'État aux collectivités territoriales.",
        keywords = "France microsimulation local tax endowment dotations territoires",
        license ="http://www.fsf.org/licensing/licenses/agpl-3.0.html",
        url = "https://git.leximpact.dev/leximpact/openfisca-france-dotations-locales",
        include_package_data = True,  # Will read MANIFEST.in
        data_files = [
            ("share/openfisca/openfisca-france-dotations-locales",
            ["CHANGELOG.md", "LICENSE", "README.md", "REFERENCES.md"]),
            ],
        install_requires = [
            "OpenFisca-Core[web-api] >=27.0,<39.0",
            ],
        extras_require = {
            "dev": [
                "pandas >= 1.3.5, < 2.0.0",
                "twine >= 3.0.0, < 4.0.0",  # [Python 3.7] To fix incompatibility on importlib-metadata between keyring (via twine) and openfisca-core (via Flake8)
                "autopep8",
                "flake8 >= 4.0.0, < 4.1.0",
                "pycodestyle >=2.8.0, <2.11.0",
                "jupyter >= 1.0.0, < 2.0.0"
                ]
            },
        packages=find_packages(),
        )