Skip to content

Commit

Permalink
add contributors and bump to 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mosquito committed Aug 31, 2021
1 parent c85c80f commit 8a7c387
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions aiohttp_s3_client/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
author_info = (("Dmitry Orlov", "[email protected]"),)
author_info = (
("Dmitry Orlov", "[email protected]"),
("Yuri Shikanov", "[email protected]"),
("Alexander Vasin", "[email protected]"),
)

package_info = (
"The simple module for putting and getting object from Amazon S3 "
Expand All @@ -9,7 +13,7 @@

team_email = "[email protected]"

version_info = (0, 5, 2)
version_info = (0, 5, 3)

__author__ = ", ".join("{} <{}>".format(*info) for info in author_info)
__version__ = ".".join(map(str, version_info))
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module = SourceFileLoader(
"version", os.path.join("aiohttp_s3_client", "version.py")
).load_module()
).load_module("version")


setup(
Expand Down Expand Up @@ -55,6 +55,6 @@
],
},
project_urls={
"Source": "https://github.com/mosquito/aiohttp-s3-client",
"Source": "https://github.com/aiokitchen/aiohttp-s3-client",
},
)

0 comments on commit 8a7c387

Please sign in to comment.