-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (42 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pydeskui"
version = "0.0.1"
authors = [
{ name="openHacking", email="openHacking@126.com" },
]
description = "Python TKinter Simple UI Components"
keywords = [
'python',
'GUI',
'tkinter',
'UI'
]
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
dependencies = [
'lxml==4.7.1',
'Pillow==9.0.1',
'tksvg==0.7.1'
]
classifiers = [
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/openHacking/TKinter-UI"
"Bug Tracker" = "https://github.com/openHacking/TKinter-UI/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pydeskui = ['assets/**/*']