mirror of
https://github.com/lifekiller/rarbg.git
synced 2025-05-15 23:10:30 -07:00
21 lines
408 B
Python
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',
|
|
],
|
|
}
|
|
)
|