summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2017-08-01 17:52:37 +0300
committerLars Wirzenius <liw@liw.fi>2017-08-01 17:52:37 +0300
commit65019f51b6519265f19cd49ae08438ff177a19e8 (patch)
tree7d5cfd8b9dc4898d48ae245e1d46b561c74ad46f
parent660f7d2a98810b9dac98490683931d4020704dc7 (diff)
downloadapifw-65019f51b6519265f19cd49ae08438ff177a19e8.tar.gz
Fix: setup.py to install package, not module
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 358dbf9..d734841 100644
--- a/setup.py
+++ b/setup.py
@@ -16,6 +16,6 @@ setup(
This package contains the Python module apifw, which implements a small
framework for implemnting backends with a RESTful JSON HTTP API.
''',
- py_modules=['apifw'],
+ packages=['apifw'],
)