-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
executable file
·71 lines (62 loc) · 2.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!bin/python
###############################################################################
###############################################################################
from setuptools import setup
###############################################################################
###############################################################################
version = '2.2.35'
###############################################################################
###############################################################################
if __name__ == '__main__':
setup (
name='webed',
version=version,
description='Browser based text editor',
author='Hasan Karahan',
author_email='[email protected]',
packages=['webed'],
include_package_data=True,
zip_safe=False,
install_requires=[
'Flask==0.10.1',
'Flask-Admin==1.0.7',
'Flask-Assets==0.8',
'Flask-DebugToolbar==0.9.0',
'Flask-Login==0.2.7', # <= 0.2.9
'Flask-Mail==0.9.0',
'Flask-Psycopg2==1.2',
'Flask-SQLAlchemy==1.0',
'Flask-Script==0.5.3', # <= 0.6.6
'Flask-WTF==0.9.4',
'Jinja2==2.7.1',
'MarkupSafe==0.18',
'PyYAML==3.10',
'SQLAlchemy==0.9.0',
'WTForms==1.0.5',
'Werkzeug==0.9.4',
'acidfs==1.1dev',
'blinker==1.3',
'compressinja==0.0.2',
'hiredis==0.1.1',
'ipython==0.13.2',
'itsdangerous==0.23',
'psycopg2==2.5.1',
'pylibmc==1.2.3',
'pyzmq==14.0.1',
'redis==2.9.0',
'requests==2.1.0',
'spritemapper==1.0.0',
'transaction==1.4.1',
'uWSGI==2.0',
'ujson==1.33',
'webassets==0.8', # <= 0.9
'wsgiref==0.1.2',
'yuicompressor==2.4.8',
'zope.interface==4.0.5',
],
dependency_links=[
'http://github.com/hsk81/acidfs/tarball/master#egg=acidfs-1.1dev',
]
)
###############################################################################
###############################################################################