mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
minor changes for pypi
This commit is contained in:
parent
0c8e06b150
commit
3b8642edba
3
.gitignore
vendored
3
.gitignore
vendored
@ -6,4 +6,5 @@ __pycache__/
|
|||||||
/test/
|
/test/
|
||||||
/documentation_images/customtkinter_design.afdesign
|
/documentation_images/customtkinter_design.afdesign
|
||||||
/images/
|
/images/
|
||||||
Readme_pypi.md
|
/Readme_pypi.md
|
||||||
|
project.toml
|
3
setup.py
3
setup.py
@ -3,7 +3,10 @@ import os
|
|||||||
|
|
||||||
|
|
||||||
def read(filename):
|
def read(filename):
|
||||||
|
try:
|
||||||
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
||||||
|
except Exception as err:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
|
||||||
setup(name="customtkinter",
|
setup(name="customtkinter",
|
||||||
|
Loading…
Reference in New Issue
Block a user