diff --git a/setup.py b/setup.py
index a658ecaace34af0cebbd62fdf620a309a3c77707..0a52c51d891ca1638119c550105fcecadab22a8e 100644
--- a/setup.py
+++ b/setup.py
@@ -4,12 +4,13 @@ setup(
     name="grext",
     version="0.4.1",
     packages=find_packages(),
-    install_requires=["numpy", "scipy", "pytest"],
-    author="Michele Nottoli",
+    install_requires=["numpy", "scipy"],
+    tests_require=["pytest"],
+    author="Michele Nottoli and Benjamin Stamm",
     description="Tools for generating new guesses for SCF calculations.",
     classifiers=[
         "Programming Language :: Python :: 3",
-        "License :: OSI Approved :: MIT License",
+        "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
         "Operating System :: OS Independent",
     ],
 )