Skip to content

Commit cf8a4c4

Browse files
committed
Rename kuzu -> ladybug
1 parent 875485f commit cf8a4c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+261
-261
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ pybind11_add_module(_kuzu
2929

3030
set_target_properties(_kuzu
3131
PROPERTIES
32-
LIBRARY_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/kuzu"
33-
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/kuzu"
34-
ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/kuzu")
32+
LIBRARY_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/lbug"
33+
RUNTIME_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/lbug"
34+
ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/build/lbug")
3535

3636
target_link_libraries(_kuzu
3737
PRIVATE
38-
kuzu)
38+
lbug)
3939

4040
target_include_directories(
4141
_kuzu

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ check: requirements
4242
format: requirements
4343
$(VENV_BIN)/ruff format src_py test
4444

45-
build: ## Compile kuzu (and install in 'build') for Python
45+
build: ## Compile lbug (and install in 'build') for Python
4646
$(MAKE) -C ../../ python
47-
cp src_py/*.py build/kuzu/
47+
cp src_py/*.py build/lbug/
4848

4949
test: requirements ## Run the Python unit tests
50-
cp src_py/*.py build/kuzu/ && cd build
50+
cp src_py/*.py build/lbug/ && cd build
5151
$(VENV_BIN)/pytest test
5252

5353
help: ## Display this help information

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "kuzu"
2+
name = "lbug"
33
description = "Highly scalable, extremely fast, easy-to-use embeddable graph database"
44
readme = "README.md"
55
license = { text = "MIT" }
@@ -9,8 +9,8 @@ version = "0.0.1"
99
[project.urls]
1010
Homepage = "https://kuzudb.com/"
1111
Documentation = "https://docs.kuzudb.com/"
12-
Repository = "https://github.com/kuzudb/kuzu"
13-
Changelog = "https://github.com/kuzudb/kuzu/releases"
12+
Repository = "https://github.com/kuzudb/lbug"
13+
Changelog = "https://github.com/kuzudb/lbug/releases"
1414

1515
[tool.mypy]
1616
files = ["src_py", "test"]

src_cpp/cached_import/py_cached_import.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "common/exception/runtime.h"
44

5-
namespace kuzu {
5+
namespace lbug {
66

77
std::shared_ptr<PythonCachedImport> importCache;
88

@@ -28,4 +28,4 @@ bool doesPyModuleExist(std::string moduleName) {
2828
return find_spec(moduleName) != Py_None;
2929
}
3030

31-
} // namespace kuzu
31+
} // namespace lbug

src_cpp/cached_import/py_cached_item.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#include "cached_import/py_cached_import.h"
44
#include "common/exception/runtime.h"
55

6-
namespace kuzu {
6+
namespace lbug {
77

88
py::handle PythonCachedItem::operator()() {
99
assert((bool)PyGILState_Check());
@@ -20,4 +20,4 @@ py::handle PythonCachedItem::operator()() {
2020
return object;
2121
}
2222

23-
} // namespace kuzu
23+
} // namespace lbug

src_cpp/include/arrow_array.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "pybind_include.h"
44

5-
namespace kuzu {
5+
namespace lbug {
66
namespace pyarrow {
77

88
class Table : public py::object {
@@ -13,4 +13,4 @@ class Table : public py::object {
1313
static bool check_(const py::handle& object) { return !py::none().is(object); }
1414
};
1515
} // namespace pyarrow
16-
} // namespace kuzu
16+
} // namespace lbug

src_cpp/include/cached_import/py_cached_import.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "py_cached_modules.h"
77

8-
namespace kuzu {
8+
namespace lbug {
99

1010
class PythonCachedImport {
1111
public:
@@ -35,4 +35,4 @@ bool doesPyModuleExist(std::string moduleName);
3535

3636
extern std::shared_ptr<PythonCachedImport> importCache;
3737

38-
} // namespace kuzu
38+
} // namespace lbug

src_cpp/include/cached_import/py_cached_item.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#include "pybind_include.h"
77

8-
namespace kuzu {
8+
namespace lbug {
99

1010
class PythonCachedItem {
1111
public:
@@ -23,4 +23,4 @@ class PythonCachedItem {
2323
py::handle object;
2424
};
2525

26-
} // namespace kuzu
26+
} // namespace lbug

src_cpp/include/cached_import/py_cached_modules.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "py_cached_item.h"
44

5-
namespace kuzu {
5+
namespace lbug {
66

77
class DateTimeCachedItem : public PythonCachedItem {
88
public:
@@ -152,4 +152,4 @@ class UUIDCachedItem : public PythonCachedItem {
152152
PythonCachedItem UUID;
153153
};
154154

155-
} // namespace kuzu
155+
} // namespace lbug

src_cpp/include/numpy/numpy_scan.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "pybind_include.h"
44

5-
namespace kuzu {
5+
namespace lbug {
66

77
namespace common {
88
class ValueVector;
@@ -17,4 +17,4 @@ struct NumpyScan {
1717
common::ValueVector* outputVector);
1818
};
1919

20-
} // namespace kuzu
20+
} // namespace lbug

0 commit comments

Comments
 (0)