-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 824 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 824 Bytes
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
[project]
name = "talk-to"
version = "1.3.0"
description = "A simple, self-hosted Calendly-lite that computes availability from your .ics calendars."
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
dependencies = [
"aiohttp>=3.14",
"aiosmtplib>=3.0",
"arrow>=1.4",
"hypercorn>=0.18",
"icalendar>=6.1",
"quart>=0.21",
"recurring-ical-events>=3.8",
]
[dependency-groups]
dev = [
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-cov>=6.0",
"ruff>=0.14",
]
[tool.ruff]
target-version = "py313"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["talk_to"]