forked from m3nu/upodder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.32 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import re
import ast
from setuptools import setup
description = 'Command Line Podcast Downloader'
setup(
name='upodder',
author='"Stan Vitkovskiy, Manuel Riel"',
author_email='[email protected]',
version='0.6.13',
license='LICENSE.txt',
url='https://github.com/m3nu/upodder',
description=description,
packages=['upodder', 'upodder.test'],
entry_points={'console_scripts': ['upodder = upodder.upodder:main']},
long_description=open('README.rst').read(),
install_requires=[
'clint',
'requests',
'feedparser',
'sqlobject >=3.0.0a2dev-20151224',
'tqdm',
'listparser'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
],
)