diff --git a/Makefile b/Makefile
index ba0a4066badfcfa1db40ad61e2219686bf2d39ee..0d350459f001670152ccf423e0ea90ffc2d61007 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 all: install compile-sass quality test
 
 install-test:
-	pip install -q -r test_requirements.txt
+	pip install -q -r requirements/test.txt
 
 install: install-test
 
diff --git a/README.rst b/README.rst
index 781b9859afcd12f4fdac6cf3d9a5992f5c0d7c88..1be76212638546b7540e76bc0bf6748d1e877f5b 100644
--- a/README.rst
+++ b/README.rst
@@ -13,7 +13,7 @@ root folder:
 
 .. code:: bash
 
-    $ pip install -r requirements.txt
+    $ pip install -r requirements/base.txt
 
 Installing in Docker Devstack
 -----------------------------
diff --git a/setup.py b/setup.py
index fa34929b94701da80056c34f657fdac7787d0647..b1a3dcd916aab971991a0cdbc08dd0eef8f6b979 100644
--- a/setup.py
+++ b/setup.py
@@ -44,10 +44,16 @@ def is_requirement(line):
     """
     return line and not line.startswith(('-r', '#', '-e', 'git+', '-c'))
 
+
+with open('README.rst') as _f:
+    long_description = _f.read()
+
 setup(
-    name='lti_consumer-xblock',
-    version='1.3.1',
+    name='lti-consumer-xblock',
+    version='1.4.0',
     description='This XBlock implements the consumer side of the LTI specification.',
+    long_description=long_description,
+    long_description_content_type='text/markdown',
     packages=[
         'lti_consumer',
     ],
@@ -61,6 +67,8 @@ setup(
         ]
     },
     package_data=package_data("lti_consumer", ["static", "templates", "public", "translations"]),
+    keywords='lti consumer xblock',
+    url='https://github.com/edx/xblock-lti-consumer',
     classifiers=[
         'Development Status :: 5 - Production/Stable',
         'Framework :: Django',