gentoo/dev-python/pygraphviz/files/pygraphviz-1.5-docs.patch
Matthew Thode 19c5deeed2
dev-python/pygraphviz: 1.5 bump
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Matthew Thode <prometheanfire@gentoo.org>
2019-04-10 00:07:13 -05:00

30 lines
929 B
Diff

setup.py | 8 --------
1 file changed, 8 deletions(-)
diff --git a/setup.py b/setup.py
index fc0a96f..98b7f58 100644
--- a/setup.py
+++ b/setup.py
@@ -36,13 +36,6 @@ release.write_versionfile()
sys.path.pop(0)
packages = ["pygraphviz", "pygraphviz.tests"]
-docdirbase = 'share/doc/pygraphviz-%s' % release.version
-data = [
- (docdirbase, glob("*.txt")),
- (os.path.join(docdirbase, 'examples'), glob("examples/*.py")),
- (os.path.join(docdirbase, 'examples'), glob("examples/*.dat")),
- (os.path.join(docdirbase, 'examples'), glob("examples/*.dat.gz")),
-]
package_data = {'': ['*.txt'], }
if __name__ == "__main__":
@@ -75,7 +68,6 @@ if __name__ == "__main__":
download_url=release.download_url,
classifiers=release.classifiers,
packages=packages,
- data_files=data,
ext_modules=extension,
cmdclass={
'install': AddExtensionInstallCommand,