-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.72 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
[project]
name = "huckleberry-api"
version = "0.4.2"
description = "Python API client for Huckleberry baby tracking app using Firebase Firestore"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT" }
authors = [
{ name = "Woyken", email = "13166802+Woyken@users.noreply.github.com" }
]
requires-python = ">=3.14"
dependencies = [
"google-cloud-firestore>=2.11.0",
"pydantic>=2.10.0",
"aiohttp>=3.10.0",
"tzdata>=2024.1",
]
keywords = ["huckleberry", "baby", "tracking", "firebase", "api"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
]
[project.urls]
Homepage = "https://github.com/Woyken/py-huckleberry-api"
Repository = "https://github.com/Woyken/py-huckleberry-api"
Issues = "https://github.com/Woyken/py-huckleberry-api/issues"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.11.0",
"towncrier>=24.8.0",
"ty>=0.0.1a8",
]
[tool.towncrier]
directory = "newsfragments"
filename = "CHANGELOG.md"
start_string = "<!-- towncrier release notes start -->\n"
title_format = "## [{version}] - {project_date}"
issue_format = "[#{issue}](https://github.com/Woyken/py-huckleberry-api/issues/{issue})"
[tool.ruff]
target-version = "py314"
line-length = 120
exclude = [
".git",
".venv",
"dist",
"node_modules",
"jadx output latest",
]
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "lf"
[build-system]
requires = ["uv_build>=0.9.13,<0.10.0"]
build-backend = "uv_build"