Skip to content

Commit 36369d1

Browse files
committed
Fix pyproject.toml to reference correct module file names for setuptools and poetry
Signed-off-by: DavidOsipov <[email protected]>
1 parent 545799c commit 36369d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@ documentation = "https://github.com/DavidOsipov/PostQuantum-Feldman-VSS/wiki"
6464
"Signal" = "https://signal.me/#eu/d68l1UjrWlGVRzbfkVM1bvQMNqCqiae9GM86P_af8ZK2o5E5YSNKbL4MyM9y-2WH"
6565

6666
[tool.setuptools]
67-
py-modules = ["feldman_vss"]
67+
py-modules = ["feldman_vss.py"]
6868

6969
[tool.poetry]
7070
packages = [
71-
{ include = "feldman_vss", from = "." }
71+
{ include = "feldman_vss.py", from = "." }
7272
]
7373

7474
[tool.poetry.dependencies]
@@ -94,7 +94,7 @@ pythonpath = ["."]
9494

9595
[tool.coverage.run]
9696
branch = true
97-
source = ["feldman_vss"]
97+
source = ["feldman_vss.py"]
9898
omit = ["tests/*"]
9999

100100
[tool.coverage.report]

0 commit comments

Comments
 (0)