Skip to content

Commit 2468225

Browse files
author
Joris Conijn
committed
fix: package not executable
When installing the package the __init__ file was missing. Causing the execution script to fail when invoking the reports2junit command.
1 parent 15854d4 commit 2468225

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "report2junit"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
description = "`report2junit` is a tool that converts various reports into the JUnit format."
55
authors = ["Joris Conijn <joris@conijnonline.nl>"]
66
license = "MIT"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
author="Joris Conijn",
1919
author_email="joris@conijnonline.nl",
2020
url="https://github.com/Nr18/report2junit",
21-
package_dir={"": "report2junit"},
22-
packages=setuptools.find_packages(where="report2junit"),
21+
package_dir={"": "."},
22+
packages=setuptools.find_packages(where="."),
2323
install_requires=[
2424
"click==8.0.3",
2525
"junit-xml==1.9",

0 commit comments

Comments
 (0)