-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.65 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pgwidgets-python"
dynamic = ["version"]
description = "Python bindings for the pgwidgets JavaScript widget library"
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.12"
authors = [
{name = "PGWidgets Developers"},
]
dependencies = [
# Tests and runtime expect the TextSource selection/tag-region and
# tooltip/scroll APIs, the Separator widget, Button.set_hover,
# ButtonBox.min_button_width, and Dialog.set_title — introduced in
# pgwidgets-js 0.3.4. (Earlier requirements — set_min_size/
# set_max_size, the dict-tree TreeView, the binary Image protocol,
# TopLevel window-control options — date back to 0.2.0.)
"pgwidgets-js>=0.3.4",
"websockets>=12",
]
keywords = ["widgets", "ui", "gui", "websocket", "browser"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: User Interfaces",
]
[project.optional-dependencies]
dev = ["sphinx", "furo", "sphinx-autodoc-typehints"]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/naojsoft/pgwidgets-python"
Repository = "https://github.com/naojsoft/pgwidgets-python"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
[tool.setuptools.packages.find]
include = ["pgwidgets*"]
[tool.setuptools.package-data]
pgwidgets = ["icons/*"]