-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (80 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (80 loc) · 2.34 KB
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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=61" ]
[project]
name = "openfisca-govcms_eligibility"
version = "0.0.1"
description = "OpenFisca Rules as Code model for GovCMS Eligibility."
readme = "README.md"
keywords = [ "benefit", "microsimulation", "rac", "rules-as-code", "tax" ]
maintainers = [ ]
authors = [ ]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"openfisca-core[web-api]>=43",
"numpy<2.3", # openfisca-core 44.x fails to import against numpy >= 2.3 (EnumArray metaclass conflict)
"pandas",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.9,<1",
"ruff-lsp>=0.0.57,<1",
"yamllint>=1.35.1",
]
[dependency-groups]
dev = [
"ruff>=0.6.9,<1",
"ruff-lsp>=0.0.57,<1",
"yamllint>=1.35.1",
"twine",
]
[project.urls]
Changelog = "https://github.com/govCMS/rules-as-code-govcms-eligibility/blob/main/CHANGELOG.md"
Documentation = "https://openfisca.org/doc"
Homepage = "https://github.com/govCMS/rules-as-code-govcms-eligibility"
Issues = "https://github.com/govCMS/rules-as-code-govcms-eligibility/issues"
Repository = "https://github.com/govCMS/rules-as-code-govcms-eligibility"
[tool.ruff]
target-version = "py39"
format.docstring-code-line-length = 72
format.docstring-code-format = true
lint.select = [ "ALL" ]
lint.ignore = [
"ANN",
"COM812",
"D101",
"D104",
"ISC001",
"N801",
"N805",
"N806",
"PLR2004",
"PTH100",
"PTH118",
"PTH120",
"PTH123",
]
lint.pydocstyle.convention = "google"
[tool.ruff.lint.isort]
known-first-party = [ "openfisca_govcms_eligibility" ]
combine-as-imports = true
force-single-line = false
[tool.pyproject-fmt]
column_width = 79
indent = 4
max_supported_python = "3.11"
[tool.pytest.ini_options]
addopts = "--exitfirst --showlocals --doctest-modules --disable-warnings --import-mode importlib"
testpaths = [ "openfisca_govcms_eligibility/tests" ]
python_files = "**/*.py"