mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-09 09:59:51 +01:00
22 lines
715 B
Python
22 lines
715 B
Python
from setuptools import setup
|
|
|
|
setup(name='pirate-get',
|
|
version='0.2.4',
|
|
description='A command line interface for The Pirate Bay',
|
|
url='https://github.com/vikstrous/pirate-get',
|
|
author='vikstrous',
|
|
author_email='',
|
|
license='GPL',
|
|
packages=['pirate'],
|
|
entry_points={
|
|
'console_scripts': ['pirate-get = pirate.pirate:main']
|
|
},
|
|
install_requires=['colorama'],
|
|
keywords=['torrent', 'magnet', 'download', 'tpb', 'client'],
|
|
classifiers=[
|
|
'Topic :: Utilities'
|
|
'Topic :: Terminals'
|
|
'Topic :: System :: Networking'
|
|
'Programming Language :: Python :: 3 :: Only'
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
]) |