-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathsetup.py
47 lines (43 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# hack to fix a Python 2.7.3 issue with multiprocessing module --
# see http://bugs.python.org/issue15881
try:
import multiprocessing
except ImportError:
pass
dependencies = [
# Flask and extensions
"flask==0.10.1",
"flask-assets==0.9",
"flask-bcrypt==0.6.0",
"flask-login==0.2.11",
"flask-mail==0.9.0",
"flask-migrate==1.2.0",
"flask-script==2.0.5",
"flask-webtest==0.0.7",
"flask-wtf==0.9.5",
# Asset minification
"cssmin==0.2.0",
"pyscss==1.2.0",
# Database
"alembic==0.6.5",
"psycopg2==2.5.2",
"sqlalchemy==0.9.3",
# Testing
"pytest==2.5.2",
"webtest==2.0.15",
# Lint, get latest stable to stay up-to-date w/ standards
"pep8>=1.5.6",
"pylint>=1.2.1",
# Prod webserver
"gunicorn==0.17.2",
]
setup(
name="flask-sonda",
version="0.1",
url="https://github.com/petrgru/flask-sonda",
packages=find_packages(),
zip_safe=False,
install_requires=dependencies
)