mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-09 09:59:51 +01:00
17 lines
487 B
Python
17 lines
487 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-get'],
|
|
entry_points={
|
|
'console_scripts': ['pirate-get = src.main:main']
|
|
},
|
|
keywords=['server'],
|
|
classifiers=[
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
]) |