Skip to content

Commit

Permalink
Fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Aug 9, 2011
1 parent 9a9f604 commit ad8c118
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,20 @@ def parse_dependency_links(file_name, install_flag=False):
'Topic :: Voice Broadcast Software'
],
zip_safe = False,
install_requires = parse_requirements('install/conf/requirements.txt'),
dependency_links = parse_dependency_links('install/conf/requirements.txt',
install_flag),
#install_requires = parse_requirements('install/conf/requirements.txt'),
#dependency_links = parse_dependency_links('install/conf/requirements.txt',
# install_flag),
install_requires = [
"Django >= 1.3.0",
"django-notification >= 0.1.2",
"django-pagination >= 1.0.5",
"django-piston",
"South >= 0.7.2",
],
setup_requires = [
"Django >= 1.3.0",
"Sphinx >= 0.4.2",
],
extras_require = {
'async': ['celery'],
},
Expand Down

0 comments on commit ad8c118

Please sign in to comment.