-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.07 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
from setuptools import setup, find_packages
setup(
name="binding-scanner",
version="0.1.0",
author="Krish Agarwal",
author_email="[email protected]",
description="Lightweight, flexible Flask/Gunicorn-based \
Binding Scanner implementation",
long_description_content_type="text/markdown",
license="Apache License 2.0",
url="https://github.com/krish8484/binding-scanner.git",
packages=find_packages(),
keywords=(
"binding scanner biotechnology 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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=["connexion", "Flask-Cors", "Flask-PyMongo"],
)