-
Notifications
You must be signed in to change notification settings - Fork 314
/
pyproject.toml
85 lines (73 loc) · 1.87 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "gcalcli"
dynamic = ["version"]
requires-python = ">= 3.10"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Eric Davis" },
{ name = "Brian Hartvigsen" },
{ name = "Joshua Crowgey" },
]
maintainers = [
{ name = "David Barnett" },
{ name = "Martin Dengler" },
]
description = "Google Calendar Command Line Interface"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"argcomplete",
"babel",
"google-api-python-client>=1.4",
"google_auth_oauthlib",
"httplib2",
"parsedatetime",
"platformdirs",
"pydantic",
"python-dateutil",
"tomli; python_version < '3.11'",
"truststore",
]
[project.urls]
Repository = "https://github.com/insanum/gcalcli"
Issues = "https://github.com/insanum/gcalcli/issues"
Changelog = "https://github.com/insanum/gcalcli/blob/HEAD/ChangeLog"
[project.optional-dependencies]
dev = [
"google-api-python-client-stubs",
"types-python-dateutil",
"types-requests",
"types-toml; python_version < '3.11'",
"types-vobject",
]
vobject = ["vobject"]
[tool.setuptools]
packages = ["gcalcli"]
[tool.setuptools.data-files]
"share/man/man1" = ["docs/man1/gcalcli.1"]
[tool.setuptools_scm]
version_file = "gcalcli/_version.py"
[project.scripts]
gcalcli = "gcalcli.cli:main"
[tool.ruff]
line-length = 80
extend-exclude = ["tests/cli/"]
[tool.ruff.lint]
# Enable Errors, Warnings, Flakes
select = ["E", "W", "F"]
[tool.ruff.format]
# Permit mixed quote style, project currently uses a mix of both.
quote-style = "preserve"
[tool.ruff.lint.extend-per-file-ignores]
"*.pyi" = ["E501"]
[tool.mypy]
mypy_path = "gcalcli:stubs:tests"