-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (48 loc) · 1.73 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "mediamis",
version = "0.1",
license = 'All rights reserved',
description = "Share books with your friends !",
long_description = read('README'),
author = 'Stephane Benchimol (MFI)',
author_email = '[email protected]',
packages = find_packages(),
zip_safe=False,
install_requires = ['setuptools',
# Core
'django',
'psycopg2',
# Dev tools
'django-extensions',
'Werkzeug',
'django-debug-toolbar',
'django-autofixture',
# Thirds apps
'South',
'djeneralize',
'pil', # For ImageField
'django-storages',
# Others apps
#'django-crumbs',
#'cx_oracle',
#'django-annoying',
#'django-autofixture',
#'django-olwidget',
#'django-piston',
#'django-formwizard',
#'django-test-utils', # ou donc ?
#'django-tastypie',
#'django-ajax-validation',
],
classifiers = [
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)