generated from openfisca/country-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (89 loc) · 2.4 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
[project]
name = "openfisca_france_entreprises"
version = "1.0.0"
description = "OpenFisca Rules as Code model for France UniteLegales."
readme = "README.md"
keywords = ["microsimulation", "tax", "benefit", "rac", "rules-as-code"]
authors = []
maintainers = []
classifiers = [
"Development Status :: 1 - Planning",
"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",
]
requires-python = ">=3.9"
dependencies = [
"openfisca-core[web-api] >=41.4.5, <42.0.0"
]
[project.urls]
Homepage = "git://github.com/pzuldp/openfisca-france-entreprises.git"
Repository = "git://github.com/pzuldp/openfisca-france-entreprises.git"
Documentation = "https://openfisca.org/doc"
Issues = "git://github.com/pzuldp/openfisca-france-entreprises.git/issues"
Changelog = "git://github.com/pzuldp/openfisca-france-entreprises.git/blob/main/CHANGELOG.md"
[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"
]
[tool.pytest.ini_options]
addopts = "--showlocals --doctest-modules"
testpaths = [ "openfisca_france_entreprises/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 = "39"
known_first_party = "openfisca_france_entreprises"
known_openfisca = [
"openfisca_core",
"openfisca_france_entreprises"
]
known_typing = [
"mypy*",
"*types*",
"*typing*"
]
sections = [
"FUTURE",
"TYPING",
"STDLIB",
"THIRDPARTY",
"OPENFISCA",
"FIRSTPARTY",
"LOCALFOLDER"
]