-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 778 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
[project]
name = "whisk"
version = "0.0.6"
description = "Bidirectional sync for Paprika and Skylight grocery lists"
requires-python = ">=3.10"
dependencies = [
"python-dotenv>=1.0.0",
"apscheduler>=3.10.0",
"pyyaml>=6.0",
"requests>=2.31.0",
"psutil>=5.9.0",
"platformdirs>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"mypy>=1.5.0",
"bump2version>=1.0.1",
]
[project.scripts]
whisk = "whisk.cli:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ['py310']
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false