1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00
pirate-get/setup.py

24 lines
784 B
Python
Raw Normal View History

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-30 07:23:23 +02:00
version='0.2.5',
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-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 03:30:38 +02:00
install_requires=['colorama'],
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
])