Skip to content

Commit

Permalink
0.1.4a
Browse files Browse the repository at this point in the history
  • Loading branch information
NeuroAssassin committed Jul 9, 2020
1 parent 454cc8a commit 20b2370
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion reddash/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def __exit__(self, *args):


global __version__
__version__ = "0.1.3a.dev"
__version__ = "0.1.4a"
__author__ = "Neuro Assassin#4779"

# In case the dashboard cog isn't loaded
Expand Down
21 changes: 12 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="Red-Dashboard",
version="0.1.3a",
version="0.1.4a",
description="An easy-to-use interactive web dashboard to control your Redbot.",
long_description=README,
long_description_content_type="text/markdown",
Expand All @@ -15,14 +15,17 @@
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8"
"Programming Language :: Python :: 3.8",
],
packages=["reddash"],
include_package_data=True,
install_requires=["flask==1.1.2", "requests==2.23.0", "cryptography==2.9.2", "websocket_client==0.57.0", "waitress==1.4.3", "rich==1.3.1"],
entry_points={
"console_scripts": [
"reddash=reddash.__main__:main"
]
}
)
install_requires=[
"flask==1.1.2",
"requests==2.23.0",
"cryptography==2.9.2",
"websocket_client==0.57.0",
"waitress==1.4.3",
"rich==1.3.1",
],
entry_points={"console_scripts": ["reddash=reddash.__main__:main"]},
)

0 comments on commit 20b2370

Please sign in to comment.