File size: 773 Bytes
2c3c408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <pybind11/pybind11.h>

namespace tiledbpy {

namespace py = pybind11;

void init_core(py::module &);
// void _debug(py::module &);
void init_fragment(py::module &);
// void init_query_condition(py::module &);
void init_schema_evolution(py::module &);
#if defined(TILEDB_SERIALIZATION)
void init_serialization(py::module &);
void init_test_serialization(py::module &);
#endif
void init_test_metadata(py::module &);
void init_test_webp_filter(py::module &);

PYBIND11_MODULE(main, m) {
  init_core(m);
  //_debug(m);
  init_fragment(m);
  //_query_condition(m);
  init_schema_evolution(m);
#if defined(TILEDB_SERIALIZATION)
  init_serialization(m);
  init_test_serialization(m);
#endif
  init_test_metadata(m);
  init_test_webp_filter(m);
}

} // namespace tiledbpy