This is an automated email from the ASF dual-hosted git repository.

melap pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 3064fdf  Update python-pipeline-dependencies.md
     new c86b677  Merge pull request #7579: Update 
python-pipeline-dependencies.md
3064fdf is described below

commit 3064fdf583e63c915fba5bf81ef6388ec1b63998
Author: Pascal Gula <pascal.g...@gmail.com>
AuthorDate: Mon Jan 21 11:25:55 2019 +0100

    Update python-pipeline-dependencies.md
    
    For the sake of completion, added `import setuptools`.
    Corrected typo for the `setup` call.
---
 website/src/documentation/sdks/python-pipeline-dependencies.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/website/src/documentation/sdks/python-pipeline-dependencies.md 
b/website/src/documentation/sdks/python-pipeline-dependencies.md
index 3464199..327e00b 100644
--- a/website/src/documentation/sdks/python-pipeline-dependencies.md
+++ b/website/src/documentation/sdks/python-pipeline-dependencies.md
@@ -76,8 +76,10 @@ Often, your pipeline code spans multiple files. To run your 
project remotely, yo
 
 1. Create a 
[setup.py](https://pythonhosted.org/an_example_pypi_project/setuptools.html) 
file for your project. The following is a very basic `setup.py` file.
 
+        import setuptools
+
         setuptools.setup(
-           name='PACKAGE-NAME'
+           name='PACKAGE-NAME',
            version='PACKAGE-VERSION',
            install_requires=[],
            packages=setuptools.find_packages(),

Reply via email to