forked from Griffintaur/News-At-Command-Line
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 610 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 610 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
29
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name="News At Command Line",
version="0.0.1",
description="Read your news on your favourite terminal",
author="Ankit Singh",
packages=['News'],
long_description= long_description,
install_requires=[
'bs4==0.0.1',
'PyYAML==3.12',
'requests==2.18.4',
],
license='MIT',
entry_points={
'console_scripts': [
'newsctl=News.Main:Main'
]
}
)