forked from elixir-cloud-aai/cloud-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.09 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import (setup, find_packages)
from cloud_registry import __version__
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='cloud-registry',
version=__version__,
author='ELIXIR Cloud & AAI',
author_email='alexander.kanitz@alumni.ethz.ch',
description=(
'GA4GH Service Registry API implementation for the ELIXIR Cloud'
),
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url='https://github.com/elixir-cloud-aai/cloud-registry.git',
packages=find_packages(),
keywords=(
'ga4gh service registry elixir cloud rest restful api app server '
'openapi swagger mongodb python flask'
),
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
],
install_requires=[],
)