-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (86 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
97 lines (86 loc) · 2.46 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools >= 64.0",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "gcal-batch-sync"
description = "Library and command-line tools for reliable and fast synchronization with Google Calendar"
authors = [{name = "Tomáš Janoušek", email = "tomi@nomi.cz"}]
license = {text = "MIT"}
readme = {file="README.md", content-type="text/markdown"}
dynamic = ["version"]
classifiers = [ # https://pypi.org/classifiers/
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Groupware",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
requires-python = "~= 3.8"
dependencies = [
"click ~= 8.0",
"google-api-python-client ~= 1.12",
"google-auth-oauthlib ~= 0.4",
"icalendar >= 5.0.2",
"importlib-metadata; python_version<'3.10'",
"importlib-resources; python_version<'3.9'",
"platformdirs >= 2.1",
]
[project.optional-dependencies]
dev = [
"build >= 0.7",
"flake8",
"isort >= 5.0",
"mypy >= 0.900",
"prysk >= 0.20.0",
"twine",
]
test = [
"pytest",
]
[project.urls]
"Homepage" = "https://github.com/liskin/gcal-batch-sync"
"Release Notes" = "https://github.com/liskin/gcal-batch-sync/releases"
"Issues" = "https://github.com/liskin/gcal-batch-sync/issues"
"CI" = "https://github.com/liskin/gcal-batch-sync/actions"
"Donations (GitHub)" = "https://github.com/sponsors/liskin"
"Donations (PayPal)" = "https://www.paypal.me/lisknisi/10EUR"
[project.scripts]
gcal-batch-sync = "gcal_batch_sync.cli:cli"
[tool.gha-check-distro]
dependencies-apt = [
"python3-build",
"python3-click",
"python3-flake8",
"python3-importlib-metadata",
"python3-importlib-resources",
"python3-isort",
"python3-mypy",
"python3-pip",
"python3-pip-whl",
"python3-platformdirs",
"python3-pytest",
"python3-venv",
"twine",
]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.mypy]
python_executable = ".venv/bin/python3"
show_error_codes = true
[tool.isort]
profile = "open_stack"
[tool.ruff]
line-length = 120
# vim:set et: