aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-04-08 09:03:08 -0400
committerB. Stack <bgstack15@gmail.com>2024-04-08 09:03:08 -0400
commitacb35c1a5bcc94d3069d99de5041ae19ca600208 (patch)
tree0126333b3e5b5dccb82c249ac491b8b22527d9e5 /setup.cfg
downloadpython3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.tar.gz
python3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.tar.bz2
python3-tkstackrpms-acb35c1a5bcc94d3069d99de5041ae19ca600208.zip
initial commit
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg33
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..e47c9a3
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,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
bgstack15