forked from praekelt/panya
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.54 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (40 loc) · 1.54 KB
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
from setuptools import setup, find_packages
setup(
name='panya',
version='0.1.6.unomena.12',
description='Panya base app.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
author='Praekelt Foundation',
author_email='dev@praekelt.com',
license='BSD',
url='http://github.com/praekelt/panya',
packages = find_packages(),
dependency_links = [
'http://dist.plone.org/thirdparty/',
'http://github.com/praekelt/django-photologue/tarball/2.6.praekelt#egg=django-photologue-2.6.praekelt',
'http://github.com/unomena/django-cache-machine/tarball/0.6.unomena.4#egg=django-cache-machine-0.6.unomena.4',
'http://github.com/unomena/django-ckeditor/tarball/0.0.9.unomena.1#egg=django_ckeditor-0.0.9.unomena.1',
],
install_requires = [
'PIL',
'django-category',
'django-ckeditor==0.0.9.unomena.1',
'django-photologue==2.6.praekelt',
'django-publisher',
'django-secretballot',
'python-memcached==1.48',
'django-cache-machine==0.6.unomena.4',
'django-reversion==1.3.2',
],
include_package_data=True,
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,
)