From 528b012736a3ad7d8d9578a25a6431b70ca19eb7 Mon Sep 17 00:00:00 2001 From: Alex Willmer 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 )