We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82d2e3f commit a5221c0Copy full SHA for a5221c0
1 file changed
setup.py
@@ -306,16 +306,6 @@ def get_setup_args():
306
print "Fatal error: PYSQLITE_VERSION could not be detected!"
307
sys.exit(1)
308
309
- data_files = [("pysqlcipher-doc",
310
- glob.glob("doc/*.html")
311
- + glob.glob("doc/*.txt")
312
- + glob.glob("doc/*.css")),
313
- ("pysqlcipher-doc/code",
314
- glob.glob("doc/code/*.py"))]
315
-
316
- #XXX ?
317
- #py_modules = ["sqlcipher"],
318
319
setup_args = dict(
320
name="pysqlcipher",
321
version=PYSQLITE_VERSION,
@@ -333,8 +323,6 @@ def get_setup_args():
333
323
packages=["pysqlcipher", "pysqlcipher.test"] +
334
324
(["pysqlcipher.test.py25"], [])[sys.version_info < (2, 5)],
335
325
scripts=[],
336
- data_files=data_files,
337
338
326
ext_modules=[
339
327
Extension(
340
328
name="pysqlcipher._sqlite",
0 commit comments