Files
GOG Galaxy SDK Team e2f26271cb version 0.33.1
2019-06-14 14:49:25 +02:00

16 lines
368 B
Python

from setuptools import setup, find_packages
setup(
name="galaxy.plugin.api",
version="0.33.1",
description="GOG Galaxy Integrations Python 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"
]
)