mirror of
https://github.com/lifekiller/rarbg.git
synced 2025-05-15 15:00:20 -07:00
22 lines
426 B
Python
22 lines
426 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='rarbg',
|
|
version='0.2-dev',
|
|
description='RSS interface to TorrentAPI',
|
|
url='https://github.com/banteg/rarbg',
|
|
py_modules=['rarbg'],
|
|
install_requires=[
|
|
'aiohttp',
|
|
'python-dateutil',
|
|
'humanize',
|
|
'jinja2',
|
|
'click',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'rarbg = rarbg:main',
|
|
],
|
|
}
|
|
)
|