version 0.31.3

This commit is contained in:
GOG Galaxy SDK Team
2019-05-31 12:09:18 +02:00
parent 0af7387342
commit f97b6c8971

15
setup.py Normal file
View File

@@ -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"
]
)