Skip to content

Commit d1ca18b

Browse files
committed
fix: add missing __init__.py files for cedarscript_editor and text_editor packages
1 parent 82525cb commit d1ca18b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

pyproject.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,11 @@ dev = [
4848
package-dir = {"" = "src"}
4949
include-package-data = true
5050

51-
[tool.setuptools.packages.find]
52-
where = ["src"]
53-
include = ["cedarscript_editor*", "text_editor*"]
54-
exclude = ["cedarscript_editor.tests*"]
51+
[tool.setuptools.packages]
52+
find = {}
53+
54+
[tool.setuptools.package-data]
55+
"*" = ["*.txt", "*.rst"]
5556

5657
[tool.black]
5758
line-length = 100

src/cedarscript_editor/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file is intentionally left empty to mark the directory as a Python package.

src/text_editor/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file is intentionally left empty to mark the directory as a Python package.

0 commit comments

Comments
 (0)