diff --git a/recipe/meta.yaml b/recipe/meta.yaml
index e07be37e9c13eb85cacb8874acb529363ada767c..6f3d910259eedcb0621bd29ffa80d508f1cde39a 100644
--- a/recipe/meta.yaml
+++ b/recipe/meta.yaml
@@ -20,16 +20,18 @@ requirements:
   build:
   host:
     - pip
-    - python
+    - python >=3
     - setuptools
   run:
-    - python
+    - python >=3
     - csmapi
     - gdal
     - jinja2
     - numpy
+    - pyproj
     - requests
     - scipy
+    - shapely
 
 test:
   imports:
diff --git a/setup.py b/setup.py
index 1030f2c33ea7a943ebd419ba917059857bc339c7..b328fc930406800408b46232bf81a99451d2fb98 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 setup(
     name='knoten',
-    version='0.1.0',
+    version='0.2.0',
     long_description='',
     packages=find_packages(),
     include_package_data=True,