-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
I mistakenly thought find_packages was not supported, but actually checking shows that it is supported, so I'm going to gut this issue and report a different one instead, which is that the arguments to find_packages are ignored.
Here is a minimal example:
setup.py:
from setuptools import setup, find_packages
setup(packages=find_packages(where='src'))Running setuptools-py2cfg on this, I get:
[options]
packages = find:What I should get is:
[options]
packages=find:
[options.packages.find]
where=srcMetadata
Metadata
Assignees
Labels
No labels