summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-05-31 03:26:15 +0900
committerKali Kaneko <kali@leap.se>2013-05-31 03:26:15 +0900
commita5221c0bba13e639915e7db38578db665048ca9d (patch)
treeda78d14ab388dce8c745e04738ebba5a6042ade8
parent82d2e3fe619bef5614bf187520d472fe186a5e54 (diff)
remove doc install for now
-rw-r--r--setup.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/setup.py b/setup.py
index ac1a3cd..ebf535a 100644
--- a/setup.py
+++ b/setup.py
@@ -306,16 +306,6 @@ def get_setup_args():
print "Fatal error: PYSQLITE_VERSION could not be detected!"
sys.exit(1)
- data_files = [("pysqlcipher-doc",
- glob.glob("doc/*.html")
- + glob.glob("doc/*.txt")
- + glob.glob("doc/*.css")),
- ("pysqlcipher-doc/code",
- glob.glob("doc/code/*.py"))]
-
- #XXX ?
- #py_modules = ["sqlcipher"],
-
setup_args = dict(
name="pysqlcipher",
version=PYSQLITE_VERSION,
@@ -333,8 +323,6 @@ def get_setup_args():
packages=["pysqlcipher", "pysqlcipher.test"] +
(["pysqlcipher.test.py25"], [])[sys.version_info < (2, 5)],
scripts=[],
- data_files=data_files,
-
ext_modules=[
Extension(
name="pysqlcipher._sqlite",