12 lines
320 B
Python
12 lines
320 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='haruhichan_rss',
|
|
version='.1',
|
|
packages=[''],
|
|
url='https://github.com/kdb424/haruhichan_rss',
|
|
license='MIT',
|
|
author='kdb424',
|
|
author_email='kdb424@gmail.com',
|
|
description='Downloads files from Haruhichan RSS feed', requires=['feedparser']
|
|
)
|