Make package "pip install"able (#15)

By specifying "py_modules" instead of "packages" in setup.py, the
single-file module is found and installed in site-packages correctly.
This commit is contained in:
Martijn van de Streek
2020-10-22 16:39:37 +02:00
committed by GitHub
parent 7f80b8e6bc
commit d9edd0d32f
+1 -1
View File
@@ -15,7 +15,7 @@ setuptools.setup(
author='Joshua Tauberer',
author_email='jt@occams.info',
url='https://github.com/JoshData/convert-outlook-msg-file',
packages=setuptools.find_packages(),
py_modules=['outlookmsgfile'],
install_requires=install_requires,
long_description=long_description,
long_description_content_type="text/markdown",