-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 2.09 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
[project]
name = "policyengine-us"
version = "1.680.0"
description = "Add your description here."
readme = "README.md"
authors = [
{ name = "PolicyEngine", email = "hello@policyengine.org" }
]
requires-python = ">=3.9,<3.15"
classifiers = [
"Development Status :: 5 - Production/Stable",
"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",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"microdf-python>=1.0.0",
"pandas>=2.0",
"policyengine-core>=3.25.1",
"spm-calculator>=0.2.0",
"tables>=3.9",
"tqdm>=4.67.1",
]
[project.scripts]
policyengine-us = "policyengine_us:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"ruff>=0.9.0",
"coverage>=7.9.2",
"furo>=2024.8.6",
"jupyter-book>=1.0.4.post1",
"setuptools>=80.9.0",
"build>=1.2.2.post1",
"towncrier>=24.8.0",
]
[tool.hatch.build.targets.wheel]
packages = ["policyengine_us"]
[tool.towncrier]
package = "policyengine_us"
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
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E402", "E501", "E712", "E713", "E721", "E722", "E741", "F401", "F402", "F403", "F405", "F541", "F811", "F821", "F841"]