-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
107 lines (95 loc) · 2.25 KB
/
pyproject.toml
File metadata and controls
107 lines (95 loc) · 2.25 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "policyengine_uk_data"
version = "1.53.1"
description = "A package to create representative microdata for the UK."
readme = "README.md"
authors = [
{name = "PolicyEngine", email = "hello@policyengine.org"},
]
license = {file = "LICENSE"}
requires-python = ">=3.13"
dependencies = [
"policyengine-core>=3.19.4",
"requests",
"tqdm",
"tabulate",
"huggingface_hub",
"policyengine",
"google-cloud-storage",
"google-auth",
"policyengine-uk>=2.86.0",
"microcalibrate>=0.18.0",
"microimpute>=1.0.1",
"ruff>=0.9.0",
"rich>=13.0.0",
"odfpy",
"pandas",
"openpyxl",
"pydantic>=2.0",
"pyyaml",
"sqlmodel>=0.0.16",
]
[project.optional-dependencies]
dev = [
"ruff>=0.9.0",
"pytest",
"torch",
"l0-python>=0.4.0",
"tables",
"furo",
"yaml-changelog>=0.1.7",
"itables",
"quantile-forest",
"build", "towncrier>=24.8.0",
]
[tool.setuptools]
packages = ["policyengine_uk_data"]
include-package-data = true
[tool.setuptools.package-data]
"policyengine_uk_data" = ["**/*"]
[tool.pytest.ini_options]
addopts = "-v"
xfail_strict = true
testpaths = ["policyengine_uk_data/tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"unit: marks tests as unit tests",
"integration: marks tests as integration tests",
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.towncrier]
package = "policyengine_uk_data"
directory = "changelog.d"
filename = "CHANGELOG.md"
title_format = "## [{version}] - {project_date}"
issue_format = ""
underlines = ["", "", ""]
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking changes"
showcontent = true
[[tool.towncrier.type]]
directory = "added"
name = "Added"
showcontent = true
[[tool.towncrier.type]]
directory = "changed"
name = "Changed"
showcontent = true
[[tool.towncrier.type]]
directory = "fixed"
name = "Fixed"
showcontent = true
[[tool.towncrier.type]]
directory = "removed"
name = "Removed"
showcontent = true