-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (38 loc) · 1.45 KB
/
setup.py
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
35
36
37
38
39
40
from setuptools import setup, find_packages
from pubgrade import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pubgrade",
version=__version__,
author="ELIXIR Cloud & AAI",
author_email="akash2237778@gmail.com",
description=(
"Pubgrade is a decoupled, publish-subscribe-based continuous "
"integration (CI) and continuous delivery (CD) microservice "
"that allows developers to notify deployments of available "
"updates, which can then autonomously decide what to do with "
"them. "
),
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/elixir-cloud-aai/Pubgrade.git",
packages=find_packages(),
keywords=(
"api app ci-cd devops docker elixir flask ga4gh mongodb openapi "
"pubgrade pubsub python server subscription swagger upgrade "
),
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=[],
)