Skip to content

Commit

Permalink
Adding pypi description and fixing typo causing casterisk build to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelannelise committed Sep 10, 2019
1 parent 0fca3b6 commit 0e7322e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parsely_raw_data/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 0e7322e

Please sign in to comment.