From 0e7322e09eb9b18ceeb104e58178c21a37076a89 Mon Sep 17 00:00:00 2001 From: rachelannelise Date: Tue, 10 Sep 2019 14:50:19 -0600 Subject: [PATCH] Adding pypi description and fixing typo causing casterisk build to fail --- parsely_raw_data/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/parsely_raw_data/__init__.py b/parsely_raw_data/__init__.py index d4af058..5c66005 100644 --- a/parsely_raw_data/__init__.py +++ b/parsely_raw_data/__init__.py @@ -52,7 +52,7 @@ def normalize_keys(input_event_dict, schema=None): ) # replace all "."s in the key with "_" - input_event_dict = {x.replace(',', '_'): v for x, v in input_event_dict.items()} + input_event_dict = {x.replace('.', '_'): v for x, v in input_event_dict.items()} # emit only public schema items # ensure all columns are available and null when needed diff --git a/setup.py b/setup.py index 9777ede..68bb3fe 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,8 @@ def run_setup(): author='Emmett Butler', author_email='support@parsely.com', url='https://github.com/Parsely/parsely_raw_data', - description='Utilities for accessing raw Parse.ly data', + description='Utilities for accessing the Parse.ly Data Pipeline', + long_description='Utilities for accessing the Parse.ly Data Pipeline', keywords='parsely s3 kinesis redshift firehose bigquery', license='Apache License 2.0', packages=find_packages(),