removed pyglet requirement

This commit is contained in:
Tom Schimansky 2022-04-06 00:31:35 +02:00
parent c277fc48bc
commit 2538fd9475
3 changed files with 3 additions and 5 deletions

View File

@ -1,4 +1,4 @@
__version__ = "3.8"
__version__ = "3.9"
from .customtkinter_input_dialog import CTkInputDialog
from .customtkinter_button import CTkButton

View File

@ -1,2 +1 @@
pyglet~=1.5.21
darkdetect~=0.3.1

View File

@ -19,7 +19,7 @@ def read(filename):
setup(name="customtkinter",
version="3.8",
version="3.9",
author="Tom Schimansky",
license="Creative Commons Zero v1.0 Universal",
url="https://github.com/TomSchimansky/CustomTkinter",
@ -31,5 +31,4 @@ setup(name="customtkinter",
classifiers=["Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"],
install_requires=["darkdetect",
"pyglet"])
install_requires=["darkdetect"])