forked from rafpaf/OpenHatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (52 loc) · 2.65 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
61
62
63
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
dependency_path = 'http://linode.openhatch.org/~paulproteus/'
setup(
name = "mysite",
version = "3",
packages = ['mysite',],
url = 'https://openhatch.org/',
license = 'AGPLv3',
install_requires = ['setuptools',
'multiprocessing',
'python-distutils-extra',
'twill==0.9.1-cc',
'invitation',
'django-authopenid==1.0.1-openhatch',
'celery==1.0.5',
'south==0.6-rc1',
'launchpadlib==1.5.3',
'django-assets==0.2',
'python-github2==0.1.1',
'pygeoip==0.1.3',
'django-debug-toolbar==0.8.1',
'pysolr',
'sisynala',
'django-haystack',
'hexagonit.recipe.download',
'django-voting',
'staticgenerator==1.4.1.2-openhatch',
'python-launchpad-bugs',
],
dependency_links = [dependency_path,
dependency_path + 'python_apt-0.6.17-py2.6-linux-i686.egg#egg=python-apt',
dependency_path + 'invitation-1.0.tar.gz#egg=invitation',
dependency_path + 'django-assets-0.2.tar.gz#egg=django-assets',
dependency_path + 'South-0.6_pre-py2.6.egg#egg=south',
dependency_path + 'django-authopenid-1.0.1-openhatch.tar.gz #egg=django-authopenid',
dependency_path + 'python-launchpad-bugs-0.3.6.tar.gz#egg=python-launchpad-bugs',
'http://linode.openhatch.org/~paulproteus/python-github2-0.1.1.tar.gz#egg=python-github2',
'http://pygeoip.googlecode.com/files/pygeoip-0.1.3.zip#egg=pygeoip',
'http://linode.openhatch.org/~rafpaf/django-debug-toolbar-0.8.1.tar.gz#egg=django-debug-toolbar',
'http://linode.openhatch.org/~parker/django-voting-0.1.tar.gz#egg=django-voting',
dependency_path + 'staticgenerator-1.4.1.2-openhatch.tar.gz#egg=staticgenerator',
],
zip_safe = False,
include_package_data = True,
description = "A website",
author = 'The OpenHatch team <http://openhatch.org/about/> <http://openhatch.org/+projects/OpenHatch>',
author_email = '[email protected]',
package_dir = {'': '.'},
)