diff --git a/gruntconfig/config.js b/gruntconfig/config.js
index b7abd694501671c454c037f6373a4cdeaf95cb78..8eb077ad7d1229fe3591db7fc570d47120ddc6ae 100644
--- a/gruntconfig/config.js
+++ b/gruntconfig/config.js
@@ -1,5 +1,4 @@
 'use strict';
 
 module.exports = {
-  src: 'src'
 };
diff --git a/gruntconfig/flake8.js b/gruntconfig/flake8.js
index 7524619b84f3550b68589d1a7f320657555e926d..29e566b9c63983e336a0959e2e96133694df968f 100644
--- a/gruntconfig/flake8.js
+++ b/gruntconfig/flake8.js
@@ -1,10 +1,8 @@
 'use strict';
 
-var config = require('./config');
-
 module.exports = {
   options: {
     ignore: ['E122', 'E126', 'E127', 'E128', 'E131']
   },
-  src: [ config.src + '/**/*.py' ]
+  src: [ 'geomagio/**/*.py' ]
 };
diff --git a/gruntconfig/nose.js b/gruntconfig/nose.js
index f642390e0fc6187cc06078b2e1dc4b1b047f7063..bb8b1799d3b1c05225b064cb1b85c87d0000e6ac 100644
--- a/gruntconfig/nose.js
+++ b/gruntconfig/nose.js
@@ -1,13 +1,10 @@
 'use strict';
 
-var config = require('./config');
-
 module.exports = {
   main: {
     options: {
       match: '[Tt]est',
       verbose: true
-    },
-    src: [config.src + '/python']
+    }
   }
 };
diff --git a/gruntconfig/watch.js b/gruntconfig/watch.js
index 60ebbce6a979bd4c90fea88041461283f93f9f34..cbe66a90c2b3ee0abedb5ed762642c9bb377247e 100644
--- a/gruntconfig/watch.js
+++ b/gruntconfig/watch.js
@@ -1,10 +1,8 @@
 'use strict';
 
-var config = require('./config');
-
 module.exports = {
   scripts: {
-    files: [config.src + '/**/*.py'],
+    files: ['geomagio/**/*.py'],
     tasks: ['lint', 'test']
   },
   gruntfile: {