ColinDuquesnoy / QDarkStyleSheet

A dark style sheet for QtWidgets application
Other
2.76k stars 726 forks source link

Non-py files not included by setup.py install #299

Closed juliangilbey closed 2 years ago

juliangilbey commented 2 years ago

setup.py includes the line:

    include_package_data=True,  # add data file from MANIFEST.in #193

to include the data files in the package wheel. But this only works for bdist and sdist. It is necessary to also have a package_data=... option to include it when running setup.py install; see https://setuptools.pypa.io/en/latest/userguide/datafiles.html

ccordoba12 commented 2 years ago

@juliangilbey, you're welcome to submit a PR for this. Thanks!

juliangilbey commented 2 years ago

@ccordoba12 Done!

ccordoba12 commented 2 years ago

Thanks! I'll let @dpizetta to review it.