-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add preliminary Python development toolchain
- Loading branch information
Showing
29 changed files
with
1,923 additions
and
0 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 |
---|---|---|
|
@@ -20,6 +20,7 @@ install(FILES | |
api.h | ||
array.h | ||
builder.h | ||
field.h | ||
type.h | ||
DESTINATION include/arrow) | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
thirdparty/ | ||
CMakeFiles/ | ||
CMakeCache.txt | ||
CTestTestfile.cmake | ||
Makefile | ||
cmake_install.cmake | ||
build/ | ||
Testing/ | ||
|
||
# Python stuff | ||
|
||
# Editor temporary/working/backup files | ||
*flymake* | ||
|
||
# Compiled source | ||
*.a | ||
*.dll | ||
*.o | ||
*.py[ocd] | ||
*.so | ||
.build_cache_dir | ||
MANIFEST | ||
|
||
# Generated sources | ||
*.c | ||
*.cpp | ||
# Python files | ||
|
||
# setup.py working directory | ||
build | ||
# setup.py dist directory | ||
dist | ||
# Egg metadata | ||
*.egg-info | ||
# coverage | ||
.coverage | ||
coverage.xml |
Oops, something went wrong.