From 990afe7d2fbcb153b1d79a41af6d2c40db04daab Mon Sep 17 00:00:00 2001 From: Alex Willmer <alex@moreati.org.uk> Date: Sun, 8 Oct 2017 14:20:52 +0100 Subject: [PATCH] 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 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0ce5f345..9751fedf 100644 --- a/setup.py +++ b/setup.py @@ -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 )