-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 1.8 KB
/
pyproject.toml
File metadata and controls
89 lines (79 loc) · 1.8 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-household-api"
version = "0.21.1"
description = "PolicyEngine Household API"
readme = "README.md"
authors = [
{ name = "PolicyEngine", email = "hello@policyengine.org" },
]
requires-python = ">=3.12"
dependencies = [
"alembic>=1.13.0",
"anthropic",
"Authlib>=1.7.0",
"cloud-sql-python-connector",
"flask>=2.2",
"flask-cors>=3",
"flask-sqlalchemy>=3",
"google-cloud-logging",
"google-cloud-storage",
"gunicorn",
"inflect",
"joserfc>=1.6.0",
"modal>=1.3.0",
"policyengine-core>=3.26.0,<3.26.8",
"policyengine_canada==0.96.3",
"policyengine-ng==0.5.1",
"policyengine-il==0.1.0",
"policyengine_uk==2.88.18",
"policyengine_us==1.691.1",
"pyjwt",
"pyyaml>=6",
"Flask-Caching==2.0.2",
"urllib3<=1.26.20,>=1.21.1",
"python-dotenv",
"pymysql",
"Flask-Limiter",
"pydantic",
]
[project.optional-dependencies]
dev = [
"pytest-timeout",
"ruff>=0.9.0",
"towncrier>=24.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 79
target-version = "py312"
[tool.towncrier]
package = "policyengine_household_api"
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.hatch.build.targets.wheel]
packages = ["policyengine_household_api"]