setup: Use correct packages declaration

py_packages is not a field know by distutils or setuptools. The closest
is `py_modules`, which perhaps what the erroneus line here started as.

Fixes #43
wip-fakessh-exit-status
Alex Willmer 7 years ago committed by David Wilson
parent 12423566da
commit 528b012736

@ -8,6 +8,6 @@ setup(
author = 'David Wilson',
license = 'OpenLDAP BSD',
url = 'http://github.com/dw/mitogen/',
py_packages = ['Mitogen'],
packages = ['mitogen'],
zip_safe = False
)

Loading…
Cancel
Save