Closed fdimaio closed 1 year ago
Patch and project coverage have no change.
Comparison is base (
98d1046
) 95.13% compared to head (313d200
) 95.13%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
I think using find_packages
is slightly more idiomatic than putting everything in the manifest.
from setuptools import setup, find_packages
setup(
name='myPackage',
packages=find_packages(),
)
I think using
find_packages
is slightly more idiomatic than putting everything in the manifest.
Ok, will update this.
OK, fixed.
Pip installs now copy all necessary files.