Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
CrystalWindSnake committed Jan 20, 2024
1 parent 81a1e55 commit 9df098f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ex4nicegui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
)


__version__ = "0.4.7"
__version__ = "0.4.8"
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ def get_data_files(base):
return list(all_infos)


with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
readme = Path("README.en.md").read_text("utf8")


requirements = ["signe>=0.2.6", "nicegui>=1.4.0", "typing_extensions"]

Expand All @@ -35,11 +35,12 @@ def get_data_files(base):
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
],
description="...",
description="Extension library based on nicegui, providing data responsive,BI functionality modules",
entry_points={},
install_requires=requirements,
license="MIT license",
# long_description=readme,
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords=["nicegui", "ex4nicegui", "webui"],
name="ex4nicegui",
Expand Down

0 comments on commit 9df098f

Please sign in to comment.