diff --git a/reddash/app/__init__.py b/reddash/app/__init__.py index 357f9d5..9d802cb 100755 --- a/reddash/app/__init__.py +++ b/reddash/app/__init__.py @@ -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 diff --git a/setup.py b/setup.py index 29ca518..1dfecab 100755 --- a/setup.py +++ b/setup.py @@ -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", @@ -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" - ] - } -) \ No newline at end of file + 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"]}, +)