-
Notifications
You must be signed in to change notification settings - Fork 165
/
setup.py
56 lines (54 loc) · 1.79 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from haxor_news.__init__ import __version__
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
description=('View and filter Hacker News from the command line: '
'Posts, comments, and linked web content.'),
author='Donne Martin',
url='https://github.com/donnemartin/haxor-news',
download_url='https://pypi.python.org/pypi/haxor-news',
author_email='[email protected]',
version=__version__,
license='Apache License 2.0',
install_requires=[
'click>=5.1,<8.0',
'colorama>=0.3.3,<1.0.0',
'requests>=2.4.3,<3.0.0',
'pygments>=2.0.2,<3.0.0',
'prompt-toolkit>=1.0.0,<1.1.0',
'six>=1.9.0,<2.0.0',
],
extras_require={
'testing': [
'mock>=1.0.1,<2.0.0',
'tox>=1.9.2,<2.0.0'
],
},
entry_points={
'console_scripts': [
'haxor-news = haxor_news.main:cli',
'hn = haxor_news.main_cli:cli'
]
},
packages=find_packages(),
scripts=[],
name='haxor-news',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)