diff options
-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", |