diff --git a/setup.py b/setup.py
index a73d5004f24f1d97e028a2b81d733d91f00f2075..53ea3bb30b12983187d8910f26fcacca249ea251 100644
--- a/setup.py
+++ b/setup.py
@@ -5,13 +5,13 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="get_rankings",
-    version="0.3",
+    version="0.6",
     author="Georges Da Costa",
     author_email="georges.da-costa@irit.fr",
     description="DBLP ranking using CORE Rank and SJR",
     long_description=long_description,
     long_description_content_type="text/markdown",
-    url="https://gitlab.irit.fr/sepia-pub/dacosta/get-rankings",
+    url="https://gitlab.irit.fr/sepia-pub/da-costa/get-rankings",
     packages=setuptools.find_packages(),
     classifiers=[
         "Programming Language :: Python :: 3",
@@ -19,7 +19,7 @@ setuptools.setup(
         "Operating System :: OS Independent",
     ],
     python_requires='>=3.6',
-    install_requires=['requests', 'BeautifulSoup4'],
+    install_requires=['requests', 'BeautifulSoup4', 'datetime', 'parsedate', 'pandas', 'numpy', 'argparse', 'lxml'],
     entry_points={
         'console_scripts': [
             'get_rankings = get_rankings.get_rankings:main',