Skip to content

Commit

Permalink
Update license, package.json, and add basic notice to the Readme (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade authored Apr 27, 2021
1 parent 3e5d76b commit 20f1fdf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 36 deletions.
4 changes: 3 additions & 1 deletion LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
Copyright (c) 2017 ironSource Ltd.
Copyright for portions of the project are (c) 2017 ironSource Ltd. https://github.com/ironSource/parquetjs
Copyright for portions of the project are https://github.com/ZJONSSON/parquetjs
Copyright for portions of the project are https://github.com/LibertyDSNP/parquetjs

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Expand Down
38 changes: 7 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

fully asynchronous, pure node.js implementation of the Parquet file format

[![Build Status](https://travis-ci.org/ZJONSSON/parquetjs.png?branch=master)](http://travis-ci.org/ZJONSSON/parquetjs)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
[![npm version](https://badge.fury.io/js/parquetjs-lite.svg)](https://badge.fury.io/js/parquetjs-lite)
[![npm version](https://badge.fury.io/js/%40unfinishedlabs%2Fparquet-js.svg)](https://badge.fury.io/js/%40unfinishedlabs%2Fparquet-js)

This package contains a fully asynchronous, pure JavaScript implementation of
the [Parquet](https://parquet.apache.org/) file format. The implementation conforms with the
Expand All @@ -15,14 +14,19 @@ for compatibility with Apache's Java [reference implementation](https://github.c
write a large amount of structured data to a file, compress it and then read parts
of it back out efficiently. The Parquet format is based on [Google's Dremel paper](https://www.google.co.nz/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0ahUKEwj_tJelpv3UAhUCm5QKHfJODhUQFggsMAE&url=http%3A%2F%2Fwww.vldb.org%2Fpvldb%2Fvldb2010%2Fpapers%2FR29.pdf&usg=AFQjCNGyMk3_JltVZjMahP6LPmqMzYdCkw).

Forked Notice
-------------
This is a forked repository with code from various sources:
- Primary source [ironSource](https://github.com/ironSource/parquetjs) [npm: parquetjs](https://www.npmjs.com/package/parquetjs)
- Secondary source [ZJONSSON](https://github.com/ZJONSSON/parquetjs) [npm: parquetjs-lite](https://www.npmjs.com/package/parquetjs-lite)

Installation
------------

To use parquet.js with node.js, install it using npm:

```
$ npm install parquetjs-lite
$ npm install @unfinishedlabs/parquetjs
```

_parquet.js requires node.js >= 7.6.0_
Expand Down Expand Up @@ -345,31 +349,3 @@ Notes

Currently parquet-cpp doesn't fully support DATA_PAGE_V2. You can work around this
by setting the useDataPageV2 option to false.

Contributions
-------------
Please make sure you sign the [contributor license agreement](https://github.com/ironSource/cla) in order for us to be able to accept your contribution. We thank you very much!


License
-------

Copyright (c) 2017 ironSource Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@
"name": "parquetjs",
"description": "fully asynchronous, pure JavaScript implementation of the Parquet file format",
"main": "parquet.js",
"version": "0.8.0",
"homepage": "https://github.com/ironSource/parquetjs",
"author": "ironSource <npm@ironsrc.com>",
"version": "0.0.0",
"homepage": "https://github.com/LibertyDSNP/parquetjs",
"license": "MIT",
"keywords": [
"dremel",
"parquet"
],
"repository": {
"type": "git",
"url": "git://github.com/ironSource/parquetjs.git"
"url": "git://github.com/LibertyDSNP/parquetjs.git"
},
"dependencies": {
"brotli": "^1.3.0",
Expand Down

0 comments on commit 20f1fdf

Please sign in to comment.