-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
30 lines (27 loc) · 908 Bytes
/
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
[project]
name = "tkfontawesome"
version = "0.2.1"
authors = [{name = "Israel Dryer", email = "[email protected]"}]
description ="Use any of the 2k+ free FontAwesome icons in your tkinter application."
keywords = ["svg", "fontawesome", "icons", "tkinter", "ttk"]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dependencies = [
"lxml==5.1.0",
"tksvg==0.7.4"
]
[project.urls]
Homepage = "https://github.com/israel-dryer/tkfontawesome"
Repository = "https://github.com/israel-dryer/tkfontawesome"
Issues = "https://github.com/israel-dryer/tkfontawesome/issues"
[build-system]
requires = ["setuptools", "scikit-build"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["tkfontawesome/"]