README: typos
[diaspy.git] / setup.py
index 01c5dcf7f3282a56d8f14ba9da3ba62615d21c4e..5ed40f13a5acb665296b68ef16af6a7f03160d57 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,8 +1,28 @@
-from distutils.core import setup
-setup(name='diaspy',
-      version='0.0.1',
-      author='Moritz Kiefer',
-      author_email='moritz.kiefer@gmail.com',
-      py_modules=['diaspy'],
-      requires=['requests']
-      )
+from setuptools import setup, find_packages
+
+setup(
+    name='diaspy-api',
+    version='0.6.0',
+    author='Marek Marecki',
+    author_email='marekjm@ozro.pw',
+    url='https://github.com/marekjm/diaspy',
+    license='GNU GPL v3',
+    description='Unofficial Python API for Diaspora*',
+    keywords='diaspy diaspora social network api',
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        'Intended Audience :: Developers',
+        'Intended Audience :: Information Technology',
+        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
+        'Programming Language :: Python :: 3 :: Only',
+        'Programming Language :: Python :: Implementation :: CPython',
+        'Topic :: Software Development :: Libraries',
+        'Topic :: Software Development :: Libraries :: Python Modules',
+        'Topic :: Utilities',
+    ],
+    packages=find_packages(),
+    install_requires=['requests', 'python-dateutil'],
+    extras_require={
+        'beautifulsoup4': ["beautifulsoup4>=3.2.1"]
+    }
+)