-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
112 lines (106 loc) · 3.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[project]
name = "openfisca-aotearoa"
version = "22.0.0"
dependencies = [
"openfisca-core[web-api] >=41.4.5, <42",
"pandas>=2.2.1",
]
requires-python = ">=3.9"
authors = [
{ name = "Asghar Hussain Kazi <https://github.com/asgharkazi>" },
{ name = "Brenda Wallace <https://github.com/Br3nda>" },
{ name = "Hamish Fraser <https://hamish.dev>" },
{ name = "Jonah Duckles <https://github.com/jduckles>" },
{ name = "Mark Calvert <https://github.com/MarkCalvert>" },
{ name = "Mauko Quiroga Alvarado <https://mauko.me>" },
{ name = "Merrin Macleod <https://github.com/mermop>" },
{ name = "Pia Andrews <https://github.com/piacandrews>" }
]
maintainers = [
{ name = "Hamish Fraser <https://hamish.dev>" },
{ name = "Jonah Duckles <https://github.com/jduckles>" },
]
description = "OpenFisca Rules As Code model for Aotearoa."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
]
# Required to copy openfisca_aotearoa/situation_examples/*.json files
[tool.setuptools.package-data]
'*' = ['*.json']
[project.optional-dependencies]
dev = [
"autopep8 >=2.0.4",
"flake8 >=7.0.0",
"isort >=5.13.2",
"pylint >=3.1.0",
"pyupgrade >=3.15.1",
"yamllint >=1.35.1"
]
[project.urls]
Homepage = "https://github.com/digitalaotearoa/openfisca-aotearoa"
Repository = "https://github.com/digitalaotearoa/openfisca-aotearoa"
Documentation = "https://openfisca.org/doc"
Issues = "https://github.com/digitalaotearoa/openfisca-aotearoa/issues"
Changelog = "https://github.com/digitalaotearoa/openfisca-aotearoa/blob/main/CHANGELOG.md"
[tool.pytest.ini_options]
addopts = "--showlocals --doctest-modules"
testpaths = [ "openfisca_aotearoa/tests" ]
python_files = "**/*.py"
filterwarnings = [
"error",
"ignore::UserWarning",
'ignore:function ham\(\) is deprecated:DeprecationWarning'
]
[tool.pylint.messages_control]
disable = [
"invalid-name",
"missing-class-docstring",
"missing-function-docstring",
"line-too-long",
"no-self-argument",
"invalid-enum-extension",
"no-member",
"not-callable",
"duplicate-code",
"too-many-locals",
"fixme",
"unused-argument",
"redefined-outer-name"
]
score = "no"
[tool.isort]
case_sensitive = "true"
force_alphabetical_sort_within_sections = "false"
group_by_package = "true"
include_trailing_comma = "true"
multi_line_output = "8"
py_version = "311"
known_first_party = "openfisca_aotearoa"
known_openfisca = [
"openfisca_core",
"openfisca_aotearoa"
]
known_typing = [
"mypy*",
"*types*",
"*typing*"
]
sections = [
"FUTURE",
"TYPING",
"STDLIB",
"THIRDPARTY",
"OPENFISCA",
"FIRSTPARTY",
"LOCALFOLDER"
]