-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 694 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 694 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
30
31
# setuptools will save you from disutills madeness
#fall back to disutills if setuptools is absent
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# description from Readme file
with open("README.md") as file:
Description = file.read()
setup(
name='hckcli',
version='0.1.0',
description=(
"view http://news.ycombinator.com popularly known as hacker news in your commandline"
),
long_description=Description,
author="shammah Agwor",
author_email="shammahagwor@gmail.com",
packages=['hckli','test'],
install_requires=(
'requests>=2.18.4',
'click>=6.7'
),
license='MIT'
)