Skip to content

Commit

Permalink
Release 0.6.0 PyFunctional
Browse files Browse the repository at this point in the history
  • Loading branch information
EntilZha committed Mar 30, 2016
1 parent 3f8e790 commit 603ee2f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ complete documentation reference
[transformation and actions API](http://scalafunctional.readthedocs.org/en/latest/functional.html#module-functional.pipeline).

Function | Description | Type
------- | ----------- | ----
------- | ----------- | ----
`map(func)/select(func)` | Maps `func` onto elements of sequence | transformation
`filter(func)/where(func)` | Filters elements of sequence to only those where `func(element)` is `True` | transformation
`filter_not(func)` | Filters elements of sequence to only those where `func(element)` is `False` | transformation
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
long_description = pypandoc.convert('README.md', 'rst', extra_args=['--columns=300'])
except (IOError, ImportError):
long_description = open('README.md').read()

setup(
name='ScalaFunctional',
name='PyFunctional',
description='Package for creating data pipelines, LINQ, and chain functional programming',
long_description=long_description,
url='https://github.com/EntilZha/ScalaFunctional',
url='https://github.com/EntilZha/PyFunctional',
author='Pedro Rodriguez',
author_email='ski.rodriguez@gmail.com',
maintainer='Pedro Rodriguez',
Expand Down

0 comments on commit 603ee2f

Please sign in to comment.