diff --git a/CHANGELOG.md b/CHANGELOG.md index 29db732..a4949ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### 7.1.3 [#148](https://github.com/openfisca/country-template/pull/148) + +* Technical improvement +* Minor change +* Details: + - Add licence to pyproject.toml, reorder to match official pyproject.toml example + ### 7.1.2 [#147](https://github.com/openfisca/country-template/pull/147) * Technical improvement diff --git a/pyproject.toml b/pyproject.toml index 02d51f0..8c626d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,16 @@ [project] name = "openfisca-country_template" -version = "7.1.2" +version = "7.1.3" +dependencies = [ + "openfisca-core[web-api] >=41.4.5, <42.0.0" +] +requires-python = ">=3.9" +authors = [] +maintainers = [] description = "OpenFisca Rules as Code model for Country-Template." readme = "README.md" +license = {file = "LICENSE"} keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code"] -authors = [] -maintainers = [] classifiers = [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: GNU Affero General Public License v3", @@ -14,17 +19,6 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Topic :: Scientific/Engineering :: Information Analysis", ] -requires-python = ">=3.9" -dependencies = [ - "openfisca-core[web-api] >=41.4.5, <42.0.0" -] - -[project.urls] -Homepage = "https://github.com/openfisca/country-template" -Repository = "https://github.com/openfisca/country-template" -Documentation = "https://openfisca.org/doc" -Issues = "https://github.com/openfisca/country-template/issues" -Changelog = "https://github.com/openfisca/country-template/blob/main/CHANGELOG.md" [project.optional-dependencies] dev = [ @@ -36,6 +30,13 @@ dev = [ "yamllint >=1.35.1" ] +[project.urls] +Homepage = "https://github.com/openfisca/country-template" +Repository = "https://github.com/openfisca/country-template" +Documentation = "https://openfisca.org/doc" +Issues = "https://github.com/openfisca/country-template/issues" +Changelog = "https://github.com/openfisca/country-template/blob/main/CHANGELOG.md" + [tool.pytest.ini_options] addopts = "--showlocals --doctest-modules" testpaths = [ "openfisca_country_template/tests" ]