-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
89 lines (75 loc) · 2.12 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
86
87
88
89
# Dinghy pyproject.toml
[project]
name = "dinghy"
description = "Dinghy daily digest tool"
authors = [
{name = "Ned Batchelder", email = "[email protected]"},
]
license.text = "Apache-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.8"
dependencies = [
"aiofiles>=0.8",
"aiohttp>3",
"backports-datetime-fromisoformat",
"click>8",
"click-log>0.3",
"emoji",
"glom",
"jinja2>3",
"pyyaml>=6",
]
dynamic = ["readme", "version"]
[project.urls]
"Mastodon" = "https://hachyderm.io/@nedbat"
"Funding" = "https://github.com/sponsors/nedbat"
"Issues" = "https://github.com/nedbat/dinghy/issues"
"Source" = "https://github.com/nedbat/dinghy"
"Home" = "https://github.com/nedbat/dinghy"
[project.scripts]
dinghy = "dinghy.__main__:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
dinghy = [
"graphql/*.*",
"templates/*.*",
]
[tool.setuptools.dynamic]
version.attr = "dinghy.__version__"
readme.file = ["README.rst", "CHANGELOG.rst"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
## Other tools
[tool.scriv]
fragment_directory = "scriv.d"
rst_header_chars = "-."
version = "literal: src/dinghy/__init__.py: __version__"
[tool.pylint.REPORTS]
# No need for a score.
score = "no"
# Regular expression which should only match function or class names that do
# not require a docstring.
no-docstring-rgx = "__.*__|test[A-Z_].*"
[tool.pylint."MESSAGES CONTROL"]
# Disable the message(s) with the given id(s).
disable = [
"invalid-name",
"logging-fstring-interpolation",
"logging-not-lazy",
"no-else-return",
"use-dict-literal",
]