diff --git a/setup.py b/setup.py
index d5193d8e61fe7511146386dabcfc7ec2226a5d1f..0885b4114c7b7628602d0ac438fa1bc3c03d049e 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
 
-from setuptools import setup
+from setuptools import setup, find_packages
 
 
 def main():
@@ -22,7 +22,7 @@ def main():
         description='NOMAD parser implementation for VASP.',
         author='Fawzi Mohamed, Lauri Himanen, Danio Brambila, Ankit Kariryaa, Henning Glawe',
         license='APACHE 2.0',
-        package='vaspparser',
+        packages=find_packages(),
         install_requires=[
             'nomadcore'
         ],