Remove references to documentation that has been moved to Read the Docs.
This commit is contained in:
parent
9515b93b35
commit
cb0f48e076
|
@ -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
|
||||
|
|
4
setup.py
4
setup.py
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue