From f97b6c8971fdaef7dfc1139848c18bc12a98cfaa Mon Sep 17 00:00:00 2001 From: GOG Galaxy SDK Team Date: Fri, 31 May 2019 12:09:18 +0200 Subject: [PATCH] version 0.31.3 --- setup.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..962a712 --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +from setuptools import setup, find_packages + +setup( + name="galaxy.plugin.api", + version="0.31.3", + description="Galaxy python plugin API", + author='Galaxy team', + author_email='galaxy@gog.com', + packages=find_packages("src"), + package_dir={'': 'src'}, + install_requires=[ + "aiohttp==3.5.4", + "certifi==2019.3.9" + ] +)