-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (46 loc) · 1.47 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
import sys
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
projector = __import__('projector')
readme_file = 'README.rst'
try:
long_description = open(readme_file).read()
except IOError, err:
sys.stderr.write("[ERROR] Cannot find file specified as "
"``long_description`` (%s)\n" % readme_file)
sys.exit(1)
setup(
name = 'django-projector',
version = projector.__version__,
url = 'http://www.django-projector.org',
author = 'Lukasz Balcerzak',
author_email = '[email protected]',
description = projector.__doc__,
long_description = long_description,
zip_safe = False,
packages = find_packages(),
include_package_data = True,
scripts = [],
requires = ['Djalog', 'richtemplates', 'mercurial'],
install_requires = [
'djalog',
'django-richtemplates',
'django-pagination>=1.0.7',
'django-autoslug',
'django-celery',
'django-guardian',
'django-registration',
'docutils',
'south',
],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite='tests.main',
)