-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gui_builder"
version = "1.5.0"
description = "A declarative GUI framework for Python built on wxPython that makes creating complex interfaces simple and maintainable"
readme = "README.md"
license = {file = "license.txt"}
requires-python = ">=3.8.6"
authors = [
{name = "Accessible Apps", email = "q.alpha@gmail.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
"Operating System :: OS Independent",
]
dependencies = [
"wxPython>=4.1.0",
"six",
"backports.strenum>=1.3.1; python_version<'3.11'",
]
[project.urls]
Homepage = "https://github.com/accessibleapps/gui_builder"
Issues = "https://github.com/accessibleapps/gui_builder/issues"
Repository = "https://github.com/accessibleapps/gui_builder.git"
[dependency-groups]
dev = [
"logger-setup>=0.17",
"pyright>=1.1.405",
]