forked from ManoSeimas/manoseimas.lt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (54 loc) · 1.2 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
from setuptools import setup, find_packages
setup(
name='manoseimas-lt',
version='0.2',
license='AGPLv3+',
packages=find_packages(),
install_requires=[
'Pillow',
'django',
'python-social-auth',
'sorl-thumbnail',
'Scrapy',
'django_compressor',
'MySQL-python',
'pylibmc',
'mock',
'coverage',
'django-debug-toolbar',
'django-extensions',
'django-test-utils',
'django-webpack-loader',
'Werkzeug',
'ipdb',
'ipython',
'django-pdb',
'django-nose',
'ipdbplugin',
'exportrecipe',
'libsass',
'django-libsass',
'pyjade',
'django-autoslug',
'six',
'leveldb',
'tqdm',
'roman',
'toposort',
'django-jsonfield',
'PyReact',
'djangorestframework',
'markdown',
'unidecode',
'webtest',
'django-webtest',
'whoosh',
'django-haystack',
'django-lazysignup',
'django-tinymce',
'django-wysiwyg',
'factory_boy',
'pytz',
'beautifulsoup4', # used by webtest tests
],
)