rarbg/setup.py
2015-12-15 17:48:44 +06:00

21 lines
408 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'
],
entry_points={
'console_scripts': [
'rarbg = rarbg:main',
],
}
)