forked from praekelt/jmbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (46 loc) · 1.59 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
from setuptools import setup, find_packages
setup(
name='jmbo',
version='1.0.6',
description='The Jmbo base product introduces a content type and various tools required to build Jmbo products.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Praekelt Foundation',
author_email='[email protected]',
license='BSD',
url='http://www.jmbo.org',
packages = find_packages(),
dependency_links = [
'https://github.com/praekelt/django-photologue/tarball/2.6.praekelt#egg=django-photologue-2.6.praekelt',
'https://github.com/praekelt/django-photologue/tarball/2.7.praekelt#egg=django-photologue-2.7.praekelt',
],
install_requires = [
'Pillow',
'pytz',
'django>=1.4,<1.5',
'django-atlas',
'django-category>=0.0.5',
'django-likes>=0.0.8',
'django-photologue>=2.6.praekelt',
'django-preferences',
'django-publisher',
'django-sites-groups',
'south',
'django-tastypie',
],
include_package_data=True,
tests_require=[
'pysqlite>=2.5',
'django-setuptest>=0.1.2',
],
test_suite="setuptest.setuptest.SetupTestSuite",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
zip_safe=False,
)