-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
22 lines (21 loc) · 879 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
from setuptools import setup, find_packages
setup(name='googlereader',
version='0.1.1',
description='Fork of google reader api from pyrfeed',
author=['Tobias Hasselrot', 'Daniel Hasselrot',],
author_email='[email protected]',
url='',
download_url='http://github.com/danielhasselrot/googlereader/',
package_dir={'GoogleReader': 'GoogleReader'},
packages = find_packages(),
package_data={},
zip_safe=False,
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: GPL 2.0',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)