Does setuptools support replacing the Manifest.in file, which specifies files that should only be included in the sdist distribution with a declaration in pyproject.toml?
Asked
Active
Viewed 14 times
1
-
1As far as I know, you can do without it if you have a normal/common package structure. But if you have some complicated requirements about what should and should not go into the sdist, you still need to use the `MANIFEST.in` file unfortunately. – wim Sep 01 '23 at 20:35