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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
[metadata]
name = tkinter-tooltip
url = https://github.com/gnikit/tkinter-tooltip
author = Giannis Nikiteas
author_email = giannis.nikiteas@gmail.com
description = An easy and customisable ToolTip implementation for Tkinter
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Software Development
Typing :: Typed
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
keywords =
tkinter
tktooltip
tkinter-tooltip
tooltip
pop-up
project_urls =
Documentation = https://gnikit.github.io/tkinter-tooltip
Repository = https://github.com/gnikit/tkinter-tooltip
Tracker = https://github.com/gnikit/tkinter-tooltip/issues
[options]
packages = find:
python_requires = >= 3.7
install_requires =
importlib-metadata; python_version < "3.8"
typing-extensions; python_version < "3.8"
[options.packages.find]
exclude =
assests
docs
examples
themes
[options.extras_require]
dev =
pytest >= 5.4.3
pytest-cov >= 2.12.1
black
isort
pre-commit
docs =
sphinx >= 7.3.7
sphinx-argparse >= 0.4.0
sphinx-autodoc-typehints >= 2.1.0
sphinx_design >= 0.5.0
sphinx-copybutton >= 0.5.2
furo >= 2024.5.6
myst-parser >= 3.0.1
sphinx-sitemap >= 2.5.1
examples =
sv-ttk
Pillow
[flake8]
max-line-length = 88
extend-ignore = E203, E722
[egg_info]
tag_build =
tag_date = 0
|