make _fetchstream() optional in people.User().fetchguid() so user data can be fetched...
[diaspy.git] / setup.py
1 from setuptools import setup, find_packages
2
3 setup(
4 name='diaspy-api',
5 version='0.5.1',
6 author='Marek Marecki',
7 author_email='marekjm@ozro.pw',
8 url='https://github.com/marekjm/diaspy',
9 license='GNU GPL v3',
10 description='Unofficial Python API for Diaspora*',
11 keywords='diaspy diaspora social network api',
12 classifiers = [
13 'Development Status :: 4 - Beta',
14 'Intended Audience :: Developers',
15 'Intended Audience :: Information Technology',
16 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
17 'Programming Language :: Python :: 3 :: Only',
18 'Programming Language :: Python :: Implementation :: CPython',
19 'Topic :: Software Development :: Libraries',
20 'Topic :: Software Development :: Libraries :: Python Modules',
21 'Topic :: Utilities',
22 ],
23 packages=find_packages(),
24 install_requires=['requests']
25 )