-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 1.02 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="openbbs-middleware",
version='0.2.0',
author="",
author_email="",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="",
packages=setuptools.find_packages(exclude=["test*"]),
install_requires=[
"Flask-Security-Too==3.4.4",
"flask-mongoengine==1.0.0",
"email-validator==1.1.1",
"Werkzeug==0.16.1",
"gevent==20.9.0",
"requests==2.25.0",
"flask-swagger @ git+https://github.com/chhsiao1981/flask-swagger.git@flaskswagger-with-from-file-keyword#egg=pyutil_cfg",
"pyutil_cfg @ git+https://github.com/chhsiao1981/[email protected]#egg=pyutil_cfg",
"pyutil_mongo @ git+https://github.com/chhsiao1981/[email protected]#egg=pyutil_mongo",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)