Remove references to documentation that has been moved to Read the Docs.

This commit is contained in:
Anthony Tuininga 2014-05-19 22:28:55 -06:00
parent 9515b93b35
commit cb0f48e076
2 changed files with 2 additions and 4 deletions

View File

@ -1,7 +1,5 @@
include MANIFEST.in
include *.c
include *.txt
recursive-include html *.html *.js *.inv
recursive-include html/_static *.png *.css *.js
recursive-include samples *.py
recursive-include test *.py *.sql

View File

@ -45,7 +45,7 @@ if sys.platform in ("win32", "cygwin"):
baseName = "cx_Oracle-doc"
dataFiles = [ (baseName,
[ "BUILD.txt", "LICENSE.TXT", "README.TXT", "HISTORY.txt"]) ]
for dir in ("html", "html/_static", "samples", "test"):
for dir in ("samples", "test"):
files = []
fullDirName = "%s/%s" % (baseName, dir)
for name in os.listdir(dir):
@ -58,7 +58,7 @@ if sys.platform in ("win32", "cygwin"):
dataFiles.append((fullDirName, files))
# define the list of files to be included as documentation for bdist_rpm
docFiles = "LICENSE.txt README.txt BUILD.txt HISTORY.txt html samples test"
docFiles = "README.txt BUILD.txt samples test"
# method for checking a potential Oracle home
def CheckOracleHome(directoryToCheck):