* __upd__: Add `Comment()` to `diaspy.models.Post.comments` on `diaspy.models.Post...
[diaspy.git] / setup.py
index b0e95feab27a38bd41c71f5a2406afabb2caed8a..471d1fde2e1ec48204f96ef57bf7254d7243528a 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,10 +1,28 @@
 from setuptools import setup, find_packages
-setup(name='diaspy',
-      version='0.1.0',
-      author='Moritz Kiefer',
-      author_email='moritz.kiefer@gmail.com',
-      url='https://github.com/Javafant/diaspora-api',
-      description='A python api to the social network diaspora',
-      packages=find_packages(),
-      install_requires=['requests']
-      )
+
+setup(
+    name='diaspy-api',
+    version='0.6.1.dev',
+    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', 'dateutil']
+    extras_require={
+        'beautifulsoup4': ["beautifulsoup4>=3.2.1"]
+    }
+)