Skip to content

Commit

Permalink
Preparing for pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloem committed Sep 28, 2016
1 parent eeed91f commit 9f5f0ee
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## My Personal Beam Utils
This package is a small set of Apache Beam utilities that I've coded
as I've needed them. These might -or might not- eventually make it into
the Apache Beam Python SDK. The utilities are the following:

* **Sources**. A few sources for common file formats:
* \[CsvFileSource\] - A source for CSV files. It returns Dictionaries and Lists

* **Coders**. A few coders for common encodings
* \[NoopCoder\] - It does not do any operation when encoding/decoding.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'beam-utils',
packages = ['beam_utils'],
version = '0.0.1',
description = 'Small lib with a few utilities for the Python SDK of Apache Beam',
author = 'Pablo E.',
author_email = 'mail@iampablo.me',
url = 'https://github.com/pabloem/',
download_url = 'https://github.com/pabloem/beam-utils/tarball/0.0.1',
keywords = ['beam', 'dataflow', 'apache beam'],
classifiers = [],
)

0 comments on commit 9f5f0ee

Please sign in to comment.