diff options
author | Kali Kaneko <kali@leap.se> | 2013-05-31 03:26:15 +0900 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2013-05-31 03:26:15 +0900 |
commit | a5221c0bba13e639915e7db38578db665048ca9d (patch) | |
tree | da78d14ab388dce8c745e04738ebba5a6042ade8 | |
parent | 82d2e3fe619bef5614bf187520d472fe186a5e54 (diff) |
remove doc install for now
-rw-r--r-- | setup.py | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -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", |