Skip to content

Commit 603ee2f

Browse files
committed
Release 0.6.0 PyFunctional
1 parent 3f8e790 commit 603ee2f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ complete documentation reference
275275
[transformation and actions API](http://scalafunctional.readthedocs.org/en/latest/functional.html#module-functional.pipeline).
276276

277277
Function | Description | Type
278-
------- | ----------- | ----
278+
------- | ----------- | ----
279279
`map(func)/select(func)` | Maps `func` onto elements of sequence | transformation
280280
`filter(func)/where(func)` | Filters elements of sequence to only those where `func(element)` is `True` | transformation
281281
`filter_not(func)` | Filters elements of sequence to only those where `func(element)` is `False` | transformation

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
try:
44
import pypandoc
5-
long_description = pypandoc.convert('README.md', 'rst')
5+
long_description = pypandoc.convert('README.md', 'rst', extra_args=['--columns=300'])
66
except (IOError, ImportError):
77
long_description = open('README.md').read()
88

99
setup(
10-
name='ScalaFunctional',
10+
name='PyFunctional',
1111
description='Package for creating data pipelines, LINQ, and chain functional programming',
1212
long_description=long_description,
13-
url='https://github.com/EntilZha/ScalaFunctional',
13+
url='https://github.com/EntilZha/PyFunctional',
1414
author='Pedro Rodriguez',
1515
author_email='[email protected]',
1616
maintainer='Pedro Rodriguez',

0 commit comments

Comments
 (0)