diff options
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 33 |
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 |