blob: e47c9a3a1fbb356862b9ff832b8df64295108cf3 (
plain)
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
|
[bdist_wheel]
universal = 1
[metadata]
name = tkstackrpms
version = 0.0.1
author = B. Stack
author_email = bgstack15@gmail.com
description = Stackrpms extensions to Tcl/Tk for Python
requires_python = >=3.8
long_description = file: README.md
long_description_content_type = text/markdown
license_file = LICENSE.md
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
[project.urls]
Homepage = "https://bgstack15.ddns.net/cgit/tkstackrpms"
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
# tk is NOT the tkinter that we want
# pip does not distribute tkinter.
install_requires =
pillow
[options.packages.find]
where = src
|