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
This commit is contained in:
Alex Willmer 2017-10-08 14:20:52 +01:00
parent 9f48fd69c1
commit 990afe7d2f
1 changed files with 1 additions and 1 deletions

View File

@ -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
)