forked from melug/sudarmaa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 722 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 722 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "Sudarmaa",
version = "0.1",
author = "Tulga",
author_email = "[email protected]",
description = ("Sudarmaa project"),
license = "BSD",
long_description=read('README'),
install_requires=[
'Django',
'pinax',
'pinax-theme-bootstrap',
'django_debug_toolbar',
'django_compressor',
'django_staticfiles',
'django_extensions',
'django-social-auth',
'django-rosetta',
'django-photologue',
'django-sendfile',
'Genshi',
'lxml',
'PIL',
],
)