-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
121 lines (109 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
121 lines (109 loc) · 2.37 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "policyengine_us_data"
version = "1.79.2"
description = "A package to create representative microdata for the US."
readme = "README.md"
authors = [
{name = "PolicyEngine", email = "hello@policyengine.org"},
]
license = {file = "LICENSE"}
requires-python = ">=3.12, <3.15"
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"policyengine-us>=1.572.5",
"policyengine-core>=3.23.6",
"pandas>=2.3.1",
"requests>=2.25.0",
"tqdm>=4.60.0",
"microdf_python>=1.2.1",
"setuptools>=60",
"microimpute>=1.15.1",
"pip-system-certs>=3.0",
"google-cloud-storage>=2.0.0",
"google-auth>=2.0.0",
"scipy>=1.15.3",
"statsmodels>=0.14.5",
"openpyxl>=3.1.5",
"tables>=3.11.1",
"torch>=2.7.1",
"us>=2.0.0",
"sqlalchemy>=2.0.41",
"sqlmodel>=0.0.24",
"xlrd>=2.0.2",
"spm-calculator>=0.1.0",
"tenacity>=8.0.0",
]
[project.optional-dependencies]
calibration = [
"samplics",
]
l0 = [
"l0-python",
]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pytest",
"quantile-forest",
"tabulate",
"furo",
"jupyter-book",
"mystmd>=1.7.0",
"yaml-changelog>=0.1.7",
"build",
"tomli",
"itables",
"towncrier>=24.8.0",
"pytest-cov",
"mdformat>=1.0.0",
"mdformat-gfm>=1.0.0",
]
[tool.setuptools]
packages = ["policyengine_us_data"]
include-package-data = true
[tool.setuptools.package-data]
"policyengine_us_data" = ["**/*"]
[tool.pytest.ini_options]
addopts = "-v"
testpaths = [
"tests/unit",
"tests/integration",
]
[tool.towncrier]
package = "policyengine_us_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