-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
29 lines (25 loc) · 1015 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
27
28
29
#!/usr/bin/env python
from codecs import open
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(name='hntop',
version='0.1.1',
description='Python wrapper over HackerNews Firebase API',
long_description=read('README.rst'),
author='Rylan Santinon',
author_email='[email protected]',
url='https://github.com/rylans/hackernews-top',
keywords=['hn', 'hackernews', 'hnapi', 'hackernews top'],
license='Apache',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search'],
packages=find_packages())