forked from AdamGold/Dryvo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (45 loc) · 1.13 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
41
42
43
44
45
46
47
from setuptools import setup, find_packages
test_req = [
"pytest==3.10.1",
"pytest-flask==0.14.0",
"pytest-cov==2.6.0",
"responses==0.9.0",
"coverage==4.5.2",
"testing.postgresql",
"black==18.9b0",
"responses==0.10.6",
]
setup(
name="dryvo",
version="0.2.2",
description="Dryvo Application",
url="https://bitbucket.org/dryvo",
author="Dryvo",
author_email="",
license="MIT",
packages=["server"],
install_requires=[
"gunicorn==19.9.0",
"SQLAlchemy==1.2.11",
"SQLAlchemy-Utils==0.33.4",
"Flask==1.0.2",
"Flask-Login==0.4.1",
"Flask-SQLAlchemy==2.3.2",
"pyjwt==1.4.2",
"loguru==0.2.4",
"Flask-Migrate==2.3.1",
"requests==2.19.1",
"requests-oauthlib==1.0.0",
"psycopg2==2.7.5",
"firebase-admin==2.17.0",
"cloudinary==1.15.0",
"Flask-Babel==0.12.2",
"Flask-WeasyPrint==0.6",
"WeasyPrint==47",
"googlemaps==3.0.2",
],
tests_require=test_req,
setup_requires=["pytest-runner==4.2"],
extras_require={"test": test_req},
zip_safe=False,
)