-
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.16 KB
/
pyproject.toml
File metadata and controls
61 lines (52 loc) · 1.16 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "calplanebot"
version = "0.1.0"
description = "Plane to CalDAV integration service"
authors = [
{name = "Roman Smolyakov", email = "roman@x-x.top"}
]
dependencies = [
"fastapi>=0.104.1",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"httpx>=0.25.2",
"caldav>=1.3.9",
"ics>=0.7.2",
"python-multipart>=0.0.6",
"python-dateutil>=2.8.2",
"pytz>=2023.3",
"aiofiles>=23.2.1",
"structlog>=23.2.0",
"apscheduler>=3.10.4"
]
requires-python = ">=3.11"
readme = "README.md"
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
"black>=23.11.0",
"isort>=5.12.0",
"mypy>=1.7.1",
"pre-commit>=3.5.0"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["app*"]
[tool.black]
line-length = 88
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true