Merge branch 'devel'
[diaspy.git] / setup.py
1 from setuptools import setup, find_packages
2 setup(name='diaspy',
3 version='0.4.3',
4 author='Marek Marecki',
5 author_email='hi@ozro.pw',
6 url='https://github.com/marekjm/diaspy',
7 description='Unofficial Python API to the social network Diaspora*',
8 packages=find_packages(),
9 install_requires=['requests']
10 )