Skip to content

Commit

Permalink
Add fields in poetry for 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EntilZha committed Jul 9, 2020
1 parent 2ee84da commit 6ba3bde
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
4 changes: 2 additions & 2 deletions functional/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from functional.streams import seq, pseq

__author__ = "Pedro Rodriguez"
__copyright__ = "Copyright 2019, Pedro Rodriguez"
__copyright__ = "Copyright 2020, Pedro Rodriguez"
__license__ = "MIT"
__version__ = "1.4.0"
__version__ = "1.4.1"
__maintainer__ = "Pedro Rodriguez"
__email__ = "me@pedro.ai"
__status__ = "Production"
21 changes: 20 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
[tool.poetry]
name = "PyFunctional"
version = "1.4.0"
version = "1.4.1"
description = "Package for creating data pipelines with chain functional programming"
authors = ["Pedro Rodriguez <me@pedro.ai>"]
maintainers = ["Pedro Rodriguez <me@pedro.ai>"]
readme = "README.md"
homepage = "https://github.com/EntilZha/PyFunctional"
repository = "https://github.com/EntilZha/PyFunctional"
documentation = "https://docs.pyfunctional.org/en/master/"
keywords = ["functional", "pipeline", "chain"]
license = "MIT"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
]
packages = [
{ include = "functional" }
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
license='MIT',
keywords='functional pipeline data collection chain rdd linq parallel',
packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'test']),
version='1.4.0',
version='1.4.1',
install_requires=install_requires,
extras_requires={
'all': ['pandas'] + compression_requires,
Expand Down

0 comments on commit 6ba3bde

Please sign in to comment.