* `diaspy.people.User().handle()` now returns `diaspora_id` instead of `handle` wich...
[diaspy.git] / setup.py
CommitLineData
fd37e2db 1from setuptools import setup, find_packages
7fdbe73e
MM
2
3setup(
4 name='diaspy-api',
d7fba977 5 version='0.6.0.dev',
7fdbe73e
MM
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(),
914307f2
C
24 install_requires=['requests', 'dateutil']
25 extras_require={
26 'beautifulsoup4': ["beautifulsoup4>=3.2.1"]
27 }
7fdbe73e 28)