Skip to content

Commit

Permalink
Add preliminary Python development toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
wesm committed Mar 5, 2016
1 parent 612fbc7 commit 3ad3143
Show file tree
Hide file tree
Showing 29 changed files with 1,923 additions and 0 deletions.
1 change: 1 addition & 0 deletions cpp/src/arrow/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ install(FILES
api.h
array.h
builder.h
field.h
type.h
DESTINATION include/arrow)

Expand Down
3 changes: 3 additions & 0 deletions cpp/src/arrow/table/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ SET_TARGET_PROPERTIES(arrow_table PROPERTIES LINKER_LANGUAGE CXX)

# Headers: top level
install(FILES
column.h
schema.h
table.h
DESTINATION include/arrow/table)

ADD_ARROW_TEST(column-test)
Expand Down
37 changes: 37 additions & 0 deletions python/.gitignore
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
Loading

0 comments on commit 3ad3143

Please sign in to comment.