mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2025-12-23 23:18:15 -05:00
17 lines
417 B
Python
17 lines
417 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="galaxy.plugin.api",
|
|
version="0.69",
|
|
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",
|
|
"psutil>=5.6.6; sys_platform == 'darwin'"
|
|
]
|
|
)
|