-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.29 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "policyengine-uk-compiled"
version = "0.20.0"
description = "Compiled UK tax-benefit microsimulation engine (Rust binary with Python interface)"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"odfpy>=1.4.1",
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"pydantic>=2.0",
"requests>=2.33.1",
"rich>=14.3.3",
]
[project.urls]
Repository = "https://github.com/PolicyEngine/policyengine-uk-rust"
[tool.setuptools.packages.find]
where = ["interfaces/python"]
include = ["policyengine_uk_compiled*"]
[tool.setuptools.package-data]
policyengine_uk_compiled = [
"bin/*",
"parameters/*.yaml",
"CLAUDE.md",
]
[tool.towncrier]
package = "policyengine_uk_compiled"
package_dir = "interfaces/python"
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