-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Han Wang
authored
May 9, 2020
1 parent
d75f6b0
commit ec02cb3
Showing
13 changed files
with
167 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# flake8: noqa | ||
from fugue.builtins.outputters import Show, AssertEqual | ||
from fugue.builtins.creators import CreateData | ||
from fugue.builtins.processors import RunJoin, RunTransformer, RunSQLSelect | ||
from fugue.builtins.processors import ( | ||
RunJoin, | ||
RunTransformer, | ||
RunSQLSelect, | ||
Rename, | ||
DropColumns, | ||
SelectColumns, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from setuptools import setup, find_packages | ||
|
||
VERSION = "0.1.0" | ||
VERSION = "0.1.1" | ||
|
||
with open("README.md") as f: | ||
LONG_DESCRIPTION = f.read() | ||
|
@@ -17,7 +17,7 @@ | |
author_email="[email protected]", | ||
keywords="distributed spark sql", | ||
url="http://github.com/goodwanghan/fugue", | ||
install_requires=["triad>=0.2.0", "adagio>=0.1.2", "fs", "sqlalchemy"], | ||
install_requires=["triad>=0.2.1", "adagio>=0.1.2", "fs", "sqlalchemy"], | ||
extras_require={}, | ||
classifiers=[ | ||
# "3 - Alpha", "4 - Beta" or "5 - Production/Stable" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.