-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (57 loc) · 1.66 KB
/
pyproject.toml
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
[tool.poetry]
name = "TaskBridge"
version = "0.1.3-beta.2"
description = "Export your Apple Reminders & Notes to NextCloud, a local folder, or CalDav - and keep them in sync!"
keywords = ["sync", "note sync", "reminder sync", "cloud notes", "cloud reminders"]
authors = ["Pint-Sized Software <hello@pintsized.dev>"]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: MacOS X",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS",
"Topic :: Utilities"
]
license = "GPL-3.0-or-later"
homepage = "https://taskbridge.app/"
repository = "https://github.com/pint-sized/taskbridge"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
PyQt6 = "^6.6.1"
darkdetect = "^0.8.0"
keyring = "^25.3.0"
schedule = "^1.2.1"
caldav = "^1.3.9"
markdown2 = "^2.5.0"
markdownify = "^0.13.1"
[tool.poetry.group.dev.dependencies]
py2app = "^0.28.7"
flake8 = "^7.0.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2.6"
sphinx-autodoc-typehints = "^2.0.1"
sphinx-rtd-dark-mode = "^1.3.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
python-decouple = "^3.8"
coveralls = "^3.3.1"
pyyaml = "^6.0.1"
[tool.poetry.group.dist]
optional = true
[tool.poetry.group.dist.dependencies]
pyinstaller = "^6.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
tbcli = 'taskbridge.cli.tbcli:main'
[tool.coverage.run]
omit = [
"*tests*",
]