Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dnsviz/dnsviz.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCasey Deccio <casey@deccio.net>2015-09-09 21:59:24 +0300
committerCasey Deccio <casey@deccio.net>2015-09-09 21:59:24 +0300
commit7bdc62381a84d0c2ce5caab824a967439a45bce1 (patch)
treeb43074a147293334a26b9069f221d3c741d45102 /setup.py
parentfc44982ee8c30a65c1f77e7fb8a3ddb08a077135 (diff)
Don't glob for single file
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 8c0f156..2e08d86 100644
--- a/setup.py
+++ b/setup.py
@@ -47,8 +47,8 @@ class MyBuild(build):
DOC_FILES = [('share/doc/dnsviz', ['README.md', 'LICENSE'])]
DATA_FILES = [('share/dnsviz/icons', glob.glob(os.path.join('share', 'icons', '*.png'))),
('share/dnsviz/css', ['share/css/dnsviz.css']),
- ('share/dnsviz/js', glob.glob(os.path.join('share', 'js', '*.js'))),
- ('share/dnsviz/html', glob.glob(os.path.join('share', 'html', '*.html'))),
+ ('share/dnsviz/js', ['share/js/dnsviz.js']),
+ ('share/dnsviz/html', ['share/html/dnssec-template.html']),
('share/dnsviz/trusted-keys', ['share/trusted-keys/root.txt'])]
MAN_FILES = [('share/man/man1', ['doc/man/dnsviz.1', 'doc/man/dnsviz-probe.1', 'doc/man/dnsviz-grok.1', 'doc/man/dnsviz-graph.1', 'doc/man/dnsviz-print.1', 'doc/man/dnsviz-query.1'])]
DOC_EXTRA_FILES = [('share/doc/dnsviz', ['doc/dnsviz-graph.html']),