forked from slinkp/fixcity
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
60 lines (55 loc) · 1.89 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
58
59
60
from setuptools import setup, find_packages
version='0.1dev'
install_requires=[
'geopy>=geopy-0.93-f1',
'sorl-thumbnail>=3.2.2,<10',
'django>=1.1.1',
'django-registration>=0.7',
'psycopg2>=2.0.12',
'PIL>=1.1.6',
'wsgilog>=0.2',
'httplib2>=0.6',
'poster',
'mock',
'south',
'tweepy',
'python-bitly',
'django-basic-apps',
'django-flash',
'django_flash_templatetag',
'django_pagination',
'coverage',
'django-voting>=0.1',
'django-attachments',
'recaptcha-client',
'lxml',
'reportlab',
# 'django_compressor',
]
import sys
if sys.version_info[:2] < (2, 6):
install_requires.append('ctypes>=1.0.2')
setup(name='fixcity',
version=version,
description="Build me a bike rack!",
author="Ivan Willig, Paul Winkler, Sonali Sridhar, Andy Cochran, etc.",
author_email="[email protected]",
url="http://www.plope.com/software/ExternalEditor",
zip_safe=False,
scripts=[],
license='AGPL',
packages=find_packages(),
dependency_links=[
'http://svn.openplans.org/eggs/geopy-0.93-f1.tar.gz#egg=geopy-0.93-f1',
'http://dist.repoze.org/PIL-1.1.6.tar.gz#egg=PIL-1.1.6',
'http://sourceforge.net/projects/ctypes/files/ctypes/1.0.2/ctypes-1.0.2.tar.gz/download#egg=ctypes-1.0.2',
'https://svn.openplans.org/eggs/httplib2-0.4.0.zip',
'https://svn.openplans.org/eggs/python-bitly-0.1.tar.gz',
'https://source.openplans.org/eggs/django-basic-apps-0.6.tar.gz',
'https://source.openplans.org/eggs/django_flash_templatetag-0.1.tar.gz',
'http://www.aeracode.org/releases/south/south-0.6.2.tar.gz',
'http://svn.openplans.org/eggs/django-voting-0.1.tar.gz',
'http://svn.openplans.org/eggs/wsgilog-0.2.tar.gz',
],
install_requires=install_requires,
)