File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,10 @@ dev = [
48
48
package-dir = {"" = " src" }
49
49
include-package-data = true
50
50
51
- [tool .setuptools .packages ]
52
- find = {}
51
+ [tool .setuptools .packages .find ]
52
+ where = [" src" ]
53
+ include = [" cedarscript_editor*" , " text_editor*" ]
54
+ namespaces = false
53
55
54
56
[tool .setuptools .package-data ]
55
57
"*" = [" *.txt" , " *.rst" ]
Original file line number Diff line number Diff line change 1
- from .cedar_editor_java import JavaCedarEditor
2
- from .cedar_editor_kotlin import KotlinCedarEditor
3
- from .cedar_editor_python import PythonCedarEditor
1
+ from .cedarscript_editor . cedar_editor_java import JavaCedarEditor
2
+ from .cedarscript_editor . cedar_editor_kotlin import KotlinCedarEditor
3
+ from .cedarscript_editor . cedar_editor_python import PythonCedarEditor
4
4
5
5
__all__ = ("PythonCedarEditor" , "KotlinCedarEditor" , "JavaCedarEditor" )
Original file line number Diff line number Diff line change 1
- # This file is intentionally left empty to mark the directory as a Python package.
1
+ from .cedar_editor_java import JavaCedarEditor
2
+ from .cedar_editor_kotlin import KotlinCedarEditor
3
+ from .cedar_editor_python import PythonCedarEditor
4
+
5
+ __all__ = ["JavaCedarEditor" , "KotlinCedarEditor" , "PythonCedarEditor" ]
You can’t perform that action at this time.
0 commit comments