-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 687 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 687 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='TermFeed',
description=('Browse, read, and open your favorite rss feed in the terminal (without curses).'),
author='Aziz Alto',
url='https://github.com/iamaziz/TermFeed',
download_url='https://github.com/iamaziz/TermFeed/archive/master.zip',
license = "MIT",
author_email='[email protected]',
version='0.0.11',
install_requires=['feedparser'],
packages=['termfeed', 'termfeed.support'],
scripts=[],
entry_points={
'console_scripts': [
'feed = termfeed.feed:main'
]
}
)