-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (24 loc) · 1.04 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
from setuptools import setup
setup(
name='hitman',
version='2',
author='Jack Laxson',
author_email='jackjrabbit+hitman@gmail.com',
url='https://github.com/jrabbit/hitman',
license='GPL v3',
long_description="Hitman: The professional RSS enclosure (Podcast) downloader. Supports OPML. Uses requests.",
description="The professional RSS enclosure (Podcast) downloader.",
scripts=['hitman.py'],
install_requires=['semidbm', 'requests', 'clint', 'six',
'feedparser>=5.1.3', 'beautifulsoup4>=4.3.2', 'click>=6'],
extras_require={'platform_system=="Windows"':["win10toast"]},
entry_points='''
[console_scripts]
hitman=hitman:cli_base
''',
classifiers=['Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Internet :: WWW/HTTP', 'Operating System :: BeOS',
'Topic :: Multimedia', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7']
)