packaging: install more stuff
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 8 Apr 2017 18:44:05 +0000 (19:44 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 8 Apr 2017 18:44:05 +0000 (19:44 +0100)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
.gitignore
debian/control
debian/hippotat.install [new file with mode: 0644]
setup.py

index 4f7644d..f5dd26c 100644 (file)
@@ -4,6 +4,7 @@ tmp
 srcbomb.tar.gz
 srcpkgsbomb.tar
 
+build
 .pybuild
 hippotat.egg-info
 
index c61aa93..8a91c22 100644 (file)
@@ -1,5 +1,5 @@
 Source: hippotat
-Build-Depends: dh-python, python3
+Build-Depends: debhelper (>= 9), dh-python, python3
 Maintainer: Ian Jackson <ijackson@chiark.greenend.org.uk>
 
 Package: hippotat
diff --git a/debian/hippotat.install b/debian/hippotat.install
new file mode 100644 (file)
index 0000000..d97ade3
--- /dev/null
@@ -0,0 +1,2 @@
+README.config PROTOCOL CONTRIBUTING    /usr/share/doc/hippotat
+simple.cfg sgo-demo.cfg test.cfg       /usr/share/doc/hippotat/examples
index 3370b32..5b61905 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -29,5 +29,6 @@ def find_requires():
 setup(
   name="hippotat",
   packages=find_packages(),
-  install_requires=find_requires()
+  install_requires=find_requires(),
+  scripts=scripts
 )