Skip to content

Commit

Permalink
tidy file
Browse files Browse the repository at this point in the history
  • Loading branch information
areski committed May 27, 2012
1 parent 7575c5b commit bb3142f
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ def parse_dependency_links(file_name, install_flag=False):
setup(
name='newfies-dialer',
version=VERSION.replace(' ', '-'),
description='Newfies is a Bulk Dialer and Voice Broadcasting application dedicated to provide information via phone technology.'
,
description='Newfies is a Bulk Dialer and Voice Broadcasting application '
'dedicated to provide information via phone technology.',
long_description=open('README.rst').read(),
author='Belaid Arezqui',
author_email='[email protected]',
url='http://www.newfies-dialer.org/',
download_url='https://github.com/Star2Billing/newfies-dialer/tarball/master'
,
download_url='https://github.com/Star2Billing/newfies-dialer'
'/tarball/master',
packages=find_packages(),
include_package_data=True,
license='MPL 2.0 License',
Expand All @@ -124,10 +124,9 @@ 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),
setup_requires=['Django >= 1.3.0', 'Sphinx >= 0.4.2'],
cmdclass=COMMANDS,
)

0 comments on commit bb3142f

Please sign in to comment.