setup.cfg 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [metadata]
  2. name = customtkinter
  3. version = 5.2.2
  4. description = Create modern looking GUIs with Python
  5. long_description = A modern and customizable python UI-library based on Tkinter: https://customtkinter.tomschimansky.com
  6. long_description_content_type = text/markdown
  7. url = https://customtkinter.tomschimansky.com
  8. author = Tom Schimansky
  9. license = Creative Commons Zero v1.0 Universal
  10. license_file = LICENSE
  11. classifiers =
  12. License :: OSI Approved :: MIT License
  13. Operating System :: OS Independent
  14. Programming Language :: Python :: 3 :: Only
  15. [project.urls]
  16. homepage = https://customtkinter.tomschimansky.com
  17. documentation = https://customtkinter.tomschimansky.com/documentation
  18. repository = https://github.com/tomschimansky/customtkinter
  19. [options]
  20. python_requires = >=3.7
  21. packages =
  22. customtkinter
  23. customtkinter.windows
  24. customtkinter.windows.widgets
  25. customtkinter.windows.widgets.appearance_mode
  26. customtkinter.windows.widgets.core_rendering
  27. customtkinter.windows.widgets.core_widget_classes
  28. customtkinter.windows.widgets.font
  29. customtkinter.windows.widgets.image
  30. customtkinter.windows.widgets.scaling
  31. customtkinter.windows.widgets.theme
  32. customtkinter.windows.widgets.utility
  33. install_requires =
  34. darkdetect
  35. typing_extensions; python_version<="3.7"
  36. packaging
  37. include_package_data = True