We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 247bbff commit 82ebb70Copy full SHA for 82ebb70
setup.py
@@ -15,5 +15,5 @@
15
'License :: OSI Approved :: MIT License',
16
'Programming Language :: Python :: 3.8',
17
],
18
- py_modules=['src.main:Json2Xml'],
+ py_modules=['src.json2xml.main:Json2Xml'],
19
)
src/__init__.py
@@ -1 +1 @@
1
-from src.main import Json2Xml
+from json2xml.main import Json2Xml
src/json2xml/__init__.py
@@ -0,0 +1 @@
+from src.json2xml.main import Json2Xml
src/main.py renamed to src/json2xml/main.py
0 commit comments