-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.54 KB
/
Copy pathsetup.py
File metadata and controls
49 lines (48 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
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
setup(
name='tunobase-core',
version='1.1.32',
description='Unomena Base Django Application',
long_description=open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read(),
author='Unomena',
author_email='dev@unomena.com',
license='BSD',
url='http://git.unomena.net/unomena/tunobase',
packages=find_packages(),
dependency_links=[
'http://github.com/unomena/django-photologue/tarball/2.8.praekelt#egg=django-photologue-2.8.praekelt',
'http://github.com/unomena/django-redactor/tarball/0.0.2#egg=redactor-0.0.2',
],
install_requires=[
'South',
'redactor==0.0.2',
'django-photologue==2.8.praekelt',
'django-preferences',
'python-memcached',
'celery>=3.1.19',
'django-celery>=3.1.17',
'django-honeypot',
'Pillow',
'google-api-python-client==1.2',
'flufl.password==1.2.1',
'requests>=2.7.0',
'unidecode',
],
tests_require=[
'django-setuptest>=0.1.2',
'pysqlite>=2.5',
'pycurl'
],
test_suite="setuptest.setuptest.SetupTestSuite",
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,
)