Skip to content

Commit 2191e20

Browse files
authored
Fix pip behaviour
1 parent 5d9bc7b commit 2191e20

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
with open("README.md", "r", encoding="utf-8") as fp:
44
long_description = fp.read()
55

6-
packages = ["math_parser.py"]
7-
86
setuptools.setup(
97
name="disno",
108
version="0.1.1",
@@ -22,6 +20,6 @@
2220
"Programming Language :: Python :: 3",
2321
"Operating System :: OS Independent",
2422
],
25-
packages=packages,
23+
py_modules=['math_parser'],
2624
python_requires=">=3.7",
2725
)

0 commit comments

Comments
 (0)