Metadata-Version: 2.1
Name: OpenFisca-Extension-Template
Version: 1.3.14
Summary: An OpenFisca extension that adds some variables to an already-existing tax and benefit system
Home-page: https://github.com/openfisca/extension-template
Author: OpenFisca Team
Author-email: contact@openfisca.org
License: http://www.fsf.org/licensing/licenses/agpl-3.0.html
Keywords: benefit microsimulation social tax
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: OpenFisca-Country-Template <6,>=5.0.0
Provides-Extra: dev
Requires-Dist: autopep8 <2.0.0,>=1.5.4 ; extra == 'dev'
Requires-Dist: flake8 <4.0.0,>=3.8.0 ; extra == 'dev'
Requires-Dist: flake8-bugbear <22.0.0,>=20.1.0 ; extra == 'dev'
Requires-Dist: flake8-builtins <2.0.0,>=1.5.0 ; extra == 'dev'
Requires-Dist: flake8-coding <2.0.0,>=1.3.0 ; extra == 'dev'
Requires-Dist: flake8-commas <3.0.0,>=2.0.0 ; extra == 'dev'
Requires-Dist: flake8-comprehensions <4.0.0,>=3.2.0 ; extra == 'dev'
Requires-Dist: flake8-docstrings <2.0.0,>=1.5.0 ; extra == 'dev'
Requires-Dist: flake8-import-order <1.0.0,>=0.18.0 ; extra == 'dev'
Requires-Dist: flake8-print <5.0.0,>=3.1.0 ; extra == 'dev'
Requires-Dist: flake8-quotes <4.0.0,>=3.2.0 ; extra == 'dev'
Requires-Dist: flake8-simplify <1.0.0,>=0.9.0 ; extra == 'dev'
Requires-Dist: flake8-use-fstring <2.0.0,>=1.1.0 ; extra == 'dev'
Requires-Dist: importlib-metadata <4.3.0 ; extra == 'dev'
Requires-Dist: isort <6.0.0,>=5.10.0 ; extra == 'dev'
Requires-Dist: pycodestyle <2.8.0,>=2.7.0 ; extra == 'dev'
Requires-Dist: pylint <3.0.0,>=2.6.0 ; extra == 'dev'
Requires-Dist: pyupgrade <4.0.0,>=3.2.0 ; extra == 'dev'

# OpenFisca Extension-Template

This repository is here to help you bootstrap your own OpenFisca [extension](http://openfisca.org/doc/contribute/extensions.html) package.

**You should NOT fork it but [download a copy](https://github.com/openfisca/extension-template/archive/master.zip) of its source code** and
- change the name `openfisca_extension_template` to reflect your extension's name, e.g. `openfisca_shangrila`
- empty out CHANGELOG.md
- replace the placeholders variables and parameters to suit your own purposes

## Installing

> We recommend that you [use a virtualenv](https://github.com/openfisca/country-template/blob/master/README.md#setting-up-a-virtual-environment-with-pew) to install OpenFisca. If you don't, you may need to add `--user` at the end of all commands starting by `pip`.

To install your extension, run:

```sh
make install
```

## Testing

You can make sure that everything is working by running the provided tests:

```sh
make test
```

> [Learn more about tests](http://openfisca.org/doc/coding-the-legislation/writing_yaml_tests.html).

Your extension package is now installed and ready!
