-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (74 loc) · 2.27 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (74 loc) · 2.27 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
[project]
name = "OpenFisca-Data-Manager"
version = "7.0.0"
description = "Survey and administrative data management tools for OpenFisca"
readme = "README.md"
keywords = ["microsimulation", "survey", "data", "openfisca"]
authors = [
{name = "OpenFisca Team", email = "contact@openfisca.fr"},
]
license = "AGPL-3.0-or-later"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">= 3.9"
dependencies = [
'chardet >=5.1.0, < 6.0',
'configparser >=5.3.0, < 8.0',
'numpy >=1.24.2, <2.0; python_version < "3.11"',
'numpy >=1.26.0, <=3.0; python_version <= "3.12"',
'numpy >=2.1.0, <=3.0; python_version >= "3.13"',
'pandas >=2.0.3, < 3.0',
'pyarrow >=13.0.0, < 19.0.0',
'pyxdg >=0.28, < 0.29',
'PyYAML >=6.0, < 7.0',
'tables >=3.8.0, < 4.0',
]
[project.urls]
Homepage = "https://github.com/openfisca/openfisca-data-manager"
Repository = "https://github.com/openfisca/openfisca-data-manager"
Issues = "https://github.com/openfisca/openfisca-data-manager/issues"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project.scripts]
build-collection = "openfisca_data_manager.scripts.build_collection:main"
migrate-survey-manager-config = "openfisca_data_manager.scripts.migrate_config:main"
[project.optional-dependencies]
dev = [
'openfisca-core >=44.6.0',
'pytest',
'pytest-cov',
'pytest-order',
'ruff',
]
sas = [
'pyreadstat >=1.2.1, < 1.3',
'sas7bdat >=2.2.3, < 3.0',
]
[tool.ruff]
line-length = 119
[tool.ruff.lint]
select = ["E", "F", "W", "I001", "B", "A", "C4", "T20", "SIM", "PTH", "N"]
ignore = [
"N801",
"N805",
]
[tool.pytest.ini_options]
testpaths = "tests"
python_files = ["test_*.py"]
[tool.setuptools.packages.find]
include = ["openfisca_data_manager*"]
[tool.setuptools.package-data]
openfisca_data_manager = [
"py.typed",
"config_files_templates/config_template.ini",
"config_files_templates/raw_data_template.ini",
]