Skip to content

Commit

Permalink
🔧 1.0.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Aug 24, 2021
1 parent 6b99a71 commit bf09b85
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0
1.0.1
9 changes: 7 additions & 2 deletions embed-templator/__init__.py → embed_templator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import discord

__version__: str = '1.0.1'


class MissingContextError(Exception):

Expand Down Expand Up @@ -50,7 +52,7 @@ def __call__(self, **kwargs) -> Embed:

return self.setup()

def setup(self):
def setup(self) -> Embed:
return self

def to_dict(self):
Expand All @@ -69,5 +71,8 @@ def to_dict(self):
self.update()
return super().to_dict()

def update(self):
def update(self) -> None:
pass


__all__ = (__version__, Embed)
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
# This call to setup() does all the work
setup(
name="embed-templator",
version="1.0.0",
version="1.0.1",
description=(
"Uses custom embed templates for your discord bot"
"to keep order and consistency."
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Edhyjox/impauto",
url="https://github.com/Sigmanificient/Embed-Templator",
author="Sigmanificient",
author_email="[email protected]",
license="MIT",
Expand All @@ -27,7 +27,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=['embed-templator'], # Pkg name
packages=['embed_templator'], # Pkg name
include_package_data=True,
install_requires=['discord.py']
)

0 comments on commit bf09b85

Please sign in to comment.