Skip to content

Commit

Permalink
3.3.4
Browse files Browse the repository at this point in the history
- fix for file_selector
  • Loading branch information
SirDank committed Apr 9, 2023
1 parent 2ca01e8 commit 0134880
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 27 deletions.
2 changes: 1 addition & 1 deletion dankware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ def file_selector(title: str = "Open", icon_path: str = "") -> str:
root.withdraw()
if icon_path: root.iconbitmap(icon_path)
file_path = askopenfilename(title=title)
return file_path
return file_path.replace("/", "\\")

# --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Expand Down
76 changes: 50 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,54 @@
from setuptools import setup, find_packages

setup(
name="dankware",
version="3.3.3",
author="SirDank",
author_email="[email protected]",
description="Python module with various features.",
long_description=open("README.md","r",encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/SirDank/dankware",
project_urls={
"GitHub": "https://github.com/SirDank/dankware",
"Bug Tracker": "https://github.com/SirDank/dankware/issues",
},
license="MIT",
keywords=["dank","dankware","multithread","gradient","fade","registry key","error traceback","random ip","github scraper","splash screen"],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development"
],
package_dir={"": "."},
packages=find_packages(where="."),
install_requires=['rich', 'colorama', 'requests', 'pillow']

license = "MIT",
name = "dankware",
version = "3.3.4",
author = "SirDank",

author_email = "[email protected]",
description = "Python package with various features!",
long_description = open("README.md", "r", encoding="utf-8").read(),
long_description_content_type = "text/markdown",
url = "https://github.com/SirDank/dankware",

project_urls = {
"GitHub": "https://github.com/SirDank/dankware",
"Bug Tracker": "https://github.com/SirDank/dankware/issues",
},

keywords = [
"dank",
"dankware",
"multithread",
"gradient",
"fade",
"registry key",
"error traceback",
"random ip generator",
"github scraper",
"splash screen",
"hide window",
"file selector",
],

classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development",
],

package_dir = {"": "."},
packages = find_packages(where = "."),
install_requires = [
"rich",
"colorama",
"requests",
"pillow",
],
)

0 comments on commit 0134880

Please sign in to comment.