forked from iamaziz/TermFeed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (25 loc) · 789 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·28 lines (25 loc) · 789 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
27
28
#!/usr/bin/env python
import subprocess
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = subprocess.run(['./version.sh'], capture_output=True, text=True).stdout
setup(
name='TermFeed',
description=('Browse, read, and open your favorite rss feed in the terminal.'),
author='Dragos Dumitrache',
url='https://github.com/dragosdumitrache/TermFeed',
download_url='https://github.com/dragosdumitrache/TermFeed/archive/master.zip',
license="MIT",
author_email='dragosd2000@gmail.com',
version=version,
install_requires=['feedparser', 'click'],
packages=['feed', 'feed.support'],
scripts=[],
entry_points={
'console_scripts': [
'feed = feed.feed:main'
]
}
)