Merge pull request #19 from takabayashi/develop

Fix make commands inside the templates
diff --git a/python-toolbox/.gitignore b/python-toolbox/.gitignore
index 7f355d0..5b5eb4a 100644
--- a/python-toolbox/.gitignore
+++ b/python-toolbox/.gitignore
@@ -16,3 +16,4 @@
 python-toolbox
 .profiling
 dist
+.dev
diff --git a/python-toolbox/marvin_python_toolbox/management/templates/python-engine/Makefile b/python-toolbox/marvin_python_toolbox/management/templates/python-engine/Makefile
index ba3aac7..e734143 100644
--- a/python-toolbox/marvin_python_toolbox/management/templates/python-engine/Makefile
+++ b/python-toolbox/marvin_python_toolbox/management/templates/python-engine/Makefile
@@ -31,15 +31,15 @@
 	@echo "        Runs the docker run command with marvin env default parameters."
 
 marvin:
-	pip install -e ".[testing]" --process-dependency-links
+	pip install -e ".[testing]"
 	marvin --help
 
 marvin-prod:
-	pip install . --process-dependency-links
+	pip install .
 	marvin --help
 
 update:
-	pip install -e . -U --process-dependency-links
+	pip install -e . -U
 
 clean-pyc:
 	find . -name '*.pyc' -exec rm -f {} +
diff --git a/python-toolbox/setup.py b/python-toolbox/setup.py
index 15ab5d1..cfec315 100644
--- a/python-toolbox/setup.py
+++ b/python-toolbox/setup.py
@@ -25,12 +25,12 @@
 
 # Package basic info
 PACKAGE_NAME = 'marvin_python_toolbox'
-PACKAGE_DESCRIPTION = 'Marvin Python Toolbox'
+PACKAGE_DESCRIPTION = 'Apache Marvin Python Toolbox'
 
-URL = 'https://github.com/marvin-ai/marvin-python-toolbox'
+URL = 'https://github.com/apache/incubator-marvin'
 
 AUTHOR_NAME = 'Daniel Takabayashi'
-AUTHOR_EMAIL = 'daniel.takabayashi@gmail.com'
+AUTHOR_EMAIL = 'taka@apache.org'
 
 PYTHON_2 = True
 PYTHON_3 = True