diff --git a/README b/README
new file mode 100644
index 0000000000000000000000000000000000000000..ac0a159073f1cf7bad217874af7962d5a38407be_UkVBRE1F
--- /dev/null
+++ b/README
@@ -0,0 +1,4 @@
+This cube models cards that are like wiki pages.
+
+`Card` entities have a title, an abstract and some textual content as text, rest
+or html.
diff --git a/setup.py b/setup.py
index e85234a5acb82ac8f113d7c4a159591722145f79_c2V0dXAucHk=..ac0a159073f1cf7bad217874af7962d5a38407be_c2V0dXAucHk= 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# pylint: disable-msg=W0404,W0622,W0704,W0613,W0152
+# pylint: disable=W0404,W0622,W0704,W0613
 # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
 # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
 
@@ -142,8 +142,6 @@
     # install-layout option was introduced in 2.5.3-1~exp1
     elif sys.version_info < (2, 5, 4) and '--install-layout=deb' in sys.argv:
         sys.argv.remove('--install-layout=deb')
-    kwargs['package_dir'] = {modname : '.'}
-    packages = [modname] + get_packages(os.getcwd(), modname)
     if USE_SETUPTOOLS and install_requires:
         kwargs['install_requires'] = install_requires
         kwargs['dependency_links'] = dependency_links
@@ -147,7 +145,6 @@
     if USE_SETUPTOOLS and install_requires:
         kwargs['install_requires'] = install_requires
         kwargs['dependency_links'] = dependency_links
-    kwargs['packages'] = packages
     return setup(name = distname,
                  version = version,
                  license = license,