We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2147de commit 1e1b21eCopy full SHA for 1e1b21e
1 file changed
pyproject.toml
@@ -42,7 +42,12 @@ dev = [
42
43
[tool.setuptools]
44
package-dir = {"" = "src"}
45
-packages = ["cedarscript_ast_parser"]
+
46
+[tool.setuptools.packages.find]
47
+where = ["src"]
48
+include = ["cedarscript_ast_parser*"]
49
+exclude = ["cedarscript_ast_parser.tests*"]
50
+namespaces = false
51
52
[tool.setuptools_scm]
53
# To override version:
@@ -53,12 +58,6 @@ write_to = "src/cedarscript_ast_parser/_version.py"
58
# Append .post{number of commits} to your version if there are commits after the last tag.
54
59
version_scheme = "post-release"
55
60
56
-[tool.setuptools.packages.find]
57
-where = ["src"]
-include = ["cedarscript_ast_parser*"]
-exclude = ["cedarscript_ast_parser.tests*"]
-namespaces = false
61
-
62
[tool.black]
63
line-length = 100
64
target-version = ['py39']
0 commit comments