From eb4358831d3ff128b9ac17127a34d45712469edb Mon Sep 17 00:00:00 2001 From: Viktor Stanchev Date: Sat, 29 Aug 2015 21:58:01 -0700 Subject: [PATCH] add email, fix setup.py --- setup.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index 6a3137c..d8f3c48 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup(name='pirate-get', description='A command line interface for The Pirate Bay', url='https://github.com/vikstrous/pirate-get', author='vikstrous', - author_email='', + author_email='me@viktorstanchev.com', license='GPL', packages=['pirate'], entry_points={ @@ -14,9 +14,9 @@ setup(name='pirate-get', install_requires=['colorama'], keywords=['torrent', 'magnet', 'download', 'tpb', 'client'], classifiers=[ - 'Topic :: Utilities' - 'Topic :: Terminals' - 'Topic :: System :: Networking' - 'Programming Language :: Python :: 3 :: Only' + 'Topic :: Utilities', + 'Topic :: Terminals', + 'Topic :: System :: Networking', + 'Programming Language :: Python :: 3 :: Only', 'License :: OSI Approved :: GNU General Public License (GPL)', - ]) \ No newline at end of file + ])