We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76e8aba commit fb00c4eCopy full SHA for fb00c4e
pluggy.py renamed to pluggy/__init__.py
setup.py
@@ -20,7 +20,7 @@
20
21
def get_version():
22
p = os.path.join(os.path.dirname(
23
- os.path.abspath(__file__)), "pluggy.py")
+ os.path.abspath(__file__)), "pluggy/__init__.py")
24
with open(p) as f:
25
for line in f.readlines():
26
if "__version__" in line:
@@ -40,7 +40,7 @@ def main():
40
author_email='holger at merlinux.eu',
41
url='https://github.com/pytest-dev/pluggy',
42
classifiers=classifiers,
43
- py_modules=['pluggy'],
+ packages=['pluggy'],
44
)
45
46
0 commit comments