-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 840 Bytes
/
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
25
26
from setuptools import setup
setup(
name='pyhackernews',
version='0.1.4',
description='mimicking HN look and feel in terminal',
long_description=open('README.rst').read(),
license=open('LICENSE').read(),
keywords='hackernews hn terminal',
author='Dan Claudiu Pop, Chase Franklin',
author_email='[email protected], [email protected]',
url='https://github.com/danclaudiupop/pyhackernews/',
packages=['hn'],
install_requires=['urwid', 'beautifulsoup4'],
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Terminals',
],
entry_points={
'console_scripts': ['hn = hn.core:live']
})