Skip to content

Commit

Permalink
Reformating Setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
d6o committed Mar 11, 2016
1 parent 8e11146 commit 5a0101e
Showing 1 changed file with 19 additions and 20 deletions.
39 changes: 19 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@

from setuptools import setup

setup(
name = 'DSDownload',
version = '1.6.0.2',
description = 'Program and module for download queue optimization using multi-thread.',
url = 'https://github.com/DiSiqueira/DSDownload',
author = 'Diego Siqueira',
author_email = '[email protected]',
license = 'MIT',
package_dir = { 'DSDownload' : 'src' },
packages = [ 'DSDownload' ],
zip_safe = False,
keywords = ['download', 'thread', 'speed', 'resume', 'multi', 'simple'],
entry_points =
{
'console_scripts':
[
'dsdownload = DSDownload:main',
],
},
)
name='DSDownload',
version='1.6.0.2',
description='Program and module for download queue optimization using multi-thread.',
url='https://github.com/DiSiqueira/DSDownload',
author='Diego Siqueira',
author_email='[email protected]',
license='MIT',
package_dir={'DSDownload': 'src'},
packages=['DSDownload'],
zip_safe=False,
keywords=['download', 'thread', 'speed', 'resume', 'multi', 'simple'],
entry_points=
{
'console_scripts':
[
'dsdownload = DSDownload:main',
],
},
)

0 comments on commit 5a0101e

Please sign in to comment.