mirror of
https://github.com/gogcom/galaxy-integrations-python-api.git
synced 2025-12-27 00:48:16 -05:00
11 lines
255 B
Python
11 lines
255 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="galaxy.plugin.api",
|
|
version="0.20",
|
|
description="Galaxy python plugin API",
|
|
author='Galaxy team',
|
|
author_email='galaxy@gog.com',
|
|
packages=find_packages(exclude=["tests"])
|
|
)
|