1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-09 09:59:51 +01:00
pirate-get/setup.py

28 lines
958 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-10-11 01:57:45 +02:00
version='0.2.8',
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-09-20 10:29:22 +02:00
license='AGPL',
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
},
2016-07-03 19:26:58 +02:00
install_requires=['colorama>=0.3.3', 'beautifulsoup4>=4.4.1', 'veryprettytable>=0.8.1'],
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-11-05 07:47:09 +01:00
'Programming Language :: Python :: 3.4',
2015-08-30 03:26:54 +02:00
'License :: OSI Approved :: GNU General Public License (GPL)',
2015-09-12 07:22:36 +02:00
],
test_suite='tests',
)