-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 937 Bytes
/
setup.py
File metadata and controls
38 lines (37 loc) · 937 Bytes
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
from setuptools import setup, find_packages
setup(
name='pylab-lt',
version='0.1',
license='AGPLv3+',
packages=find_packages(),
install_requires=[
'django',
'django-nose',
'django-compressor',
'django-libsass',
'django-debug-toolbar',
'django-extensions',
'django-webtest',
'django-autoslug',
'django-allauth',
'django-contrib-comments',
'factory_boy',
'fake-factory',
'ipdb',
'unidecode',
'markdown',
'yattag',
'psycopg2',
'mock',
'docutils',
'exportrecipe',
'pytz',
'html_linter',
'template-remover',
],
classifiers=[
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
)