-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.47 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "clipse-gui"
description = "A GTK3 GUI for the clipse clipboard manager"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "D7OMDEV", email = "hello@d7om.dev" }]
keywords = ["clipboard", "clipse", "gtk", "gtk3", "linux"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: GTK",
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Desktop Environment",
"Topic :: Utilities",
]
# Runtime deps are intentionally empty: PyGObject/GTK ship via the system
# package manager (python-gobject + gtk3) so they stay in lockstep with the
# system's GLib. Bundling them is what caused #13 / #14.
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/d7omdev/clipse-gui"
Repository = "https://github.com/d7omdev/clipse-gui"
Issues = "https://github.com/d7omdev/clipse-gui/issues"
[project.scripts]
clipse-gui = "clipse_gui.cli:main"
[tool.setuptools.dynamic]
version = { attr = "clipse_gui.__version__" }
[tool.setuptools.packages.find]
include = ["clipse_gui*"]
exclude = ["tests*", "aur*", "docs*"]
[tool.pyright]
reportMissingModuleSource = false
reportOptionalMemberAccess = true
reportAttributeAccessIssue = false