-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 1016 Bytes
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 1016 Bytes
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
[project]
name = "app_elements"
version = "0.4.2"
description = "Reuseable elements of desktop applications"
authors = [
{ name = "Christopher Toth", email = "q@q-continuum.net" }
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"platform_utils>=1.5.9",
"i18n_core >= 0.3.9",
# GUI dependencies
"wxpython==4.1.0; python_version <= '3.8'",
"wxpython; python_version > '3.8'",
# Git dependencies
"gui_builder @ git+https://github.com/AccessibleApps/gui_builder.git",
"issue_reporter @ git+https://github.com/accessibleapps/issue_reporter.git",
"async_gui @ git+https://github.com/robertpro/async_gui.git",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["app_elements"]