@@ -31,11 +31,18 @@ authors = [
3131]
3232classifiers = [
3333 " License :: OSI Approved :: MIT License" ,
34+ " Intended Audience :: Science/Research" ,
35+ " Intended Audience :: Developers" ,
36+ " Intended Audience :: Education" ,
3437 " Programming Language :: Python :: 3.7" ,
3538 " Programming Language :: Python :: 3.8" ,
3639 " Programming Language :: Python :: 3.9" ,
3740 " Programming Language :: Python :: 3.10" ,
3841 " Programming Language :: Python :: 3.11" ,
42+ " Development Status :: 5 - Production/Stable" ,
43+ " Operating System :: Microsoft :: Windows" ,
44+ " Operating System :: MacOS" ,
45+ " Operating System :: Unix" ,
3946 " Topic :: Scientific/Engineering :: Artificial Intelligence" ,
4047 " Topic :: Software Development :: Libraries" ,
4148 " Topic :: Education" ,
@@ -50,14 +57,18 @@ dependencies = [
5057 ' matplotlib>=3.5.3' ,
5158 ' circlify>=0.15.0' ,
5259 " wordcloud>=1.8.2.2; python_version < '3.11'" ,
53- " kaleido>=0.2.1" ,
60+
61+ # This is a temporary fix for kaleido hanging on image generation on Windows
62+ # See: https://github.com/plotly/Kaleido/issues/110
63+ # and: https://github.com/plotly/Kaleido/issues/134
64+ " kaleido==0.1.0.post1; sys_platform == 'win32'" ,
65+ " kaleido>=0.2.1; sys_platform != 'win32'" ,
5466]
5567[project .urls ]
5668Homepage = " https://truelearnai.github.io/"
5769Documentation = " https://truelearn.readthedocs.io/en/stable/"
5870Issues = " https://github.com/TrueLearnAI/truelearn/issues"
5971Source = " https://github.com/TrueLearnAI/truelearn"
60- ChangeLog = " https://github.com/TrueLearnAI/truelearn/blob/main/docs/changelog.rst"
6172
6273[tool .setuptools .dynamic ]
6374version = {attr = " truelearn.__version__" }
0 commit comments