Skip to content

Commit

Permalink
Fix setup
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed Aug 10, 2011
1 parent 0c367f0 commit f881989
Showing 1 changed file with 11 additions and 14 deletions.
25 changes: 11 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,24 +107,21 @@ 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 = [
"Django >= 1.3.0",
"django-notification >= 0.1.2",
"django-pagination >= 1.0.5",
"django-piston",
"South >= 0.7.2",
],
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'],
},


# devel
cmdclass = COMMANDS,
)
Expand Down

0 comments on commit f881989

Please sign in to comment.