-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1 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
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__author__ = 'Max Arnold <arnold.maxim@gmail.com>'
__version__ = '0.1.3'
setup(
name='fetch-google-reader',
version=__version__,
# Metadata for PyPI.
author='Max Arnold',
author_email='arnold.maxim@gmail.com',
license='MIT',
url='http://github.com/max-arnold/fetch-google-reader',
keywords='google reader rss backup fetch fulltext',
description='Google Reader RSS archive fetcher',
long_description=open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'README.md')), 'rb').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet'
],
scripts = ['fetch-greader.py'],
platforms='any',
)