rarbg/setup.py
2016-03-03 22:28:08 +06:00

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',
],
}
)