forked from askedrelic/libgreader
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·32 lines (27 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import librssreader
setup(
name = 'librssreader',
version = librssreader.__version__,
description = 'Library for working with the Google Reader Like API',
long_description = open('README.md').read() + '\n\n' + open('HISTORY.md').read(),
author = librssreader.__author__,
author_email = '[email protected]',
url = 'https://github.com/fireinice/librssreader',
license = open("LICENSE.txt").read(),
install_requires = ['requests>=1.0',],
packages = ['librssreader'],
test_suite = 'tests',
classifiers = (
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)