2015-08-30 08:14:21 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
2015-08-30 03:26:54 +02:00
|
|
|
|
|
|
|
setup(name='pirate-get',
|
2015-08-31 07:55:26 +02:00
|
|
|
version='0.2.7',
|
2015-08-30 03:26:54 +02:00
|
|
|
description='A command line interface for The Pirate Bay',
|
|
|
|
url='https://github.com/vikstrous/pirate-get',
|
|
|
|
author='vikstrous',
|
2015-08-30 06:58:01 +02:00
|
|
|
author_email='me@viktorstanchev.com',
|
2015-08-30 03:26:54 +02:00
|
|
|
license='GPL',
|
2015-08-30 08:14:21 +02:00
|
|
|
packages=find_packages(),
|
2015-08-31 04:12:07 +02:00
|
|
|
package_data={'': ["data/*.json"]},
|
2015-08-30 03:26:54 +02:00
|
|
|
entry_points={
|
2015-08-30 03:30:38 +02:00
|
|
|
'console_scripts': ['pirate-get = pirate.pirate:main']
|
2015-08-30 03:26:54 +02:00
|
|
|
},
|
2015-08-30 19:51:34 +02:00
|
|
|
install_requires=['colorama>=0.3.3'],
|
2015-08-30 03:30:38 +02:00
|
|
|
keywords=['torrent', 'magnet', 'download', 'tpb', 'client'],
|
2015-08-30 03:26:54 +02:00
|
|
|
classifiers=[
|
2015-08-30 06:58:01 +02:00
|
|
|
'Topic :: Utilities',
|
|
|
|
'Topic :: Terminals',
|
|
|
|
'Topic :: System :: Networking',
|
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
2015-08-30 03:26:54 +02:00
|
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
2015-08-30 06:58:01 +02:00
|
|
|
])
|