diff --git a/Makefile b/Makefile deleted file mode 100644 index 10b28ae..0000000 --- a/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -all: test - -test: - bash test.sh - diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..864d687 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +pyexcel-xls (0.2.2-1) unstable; urgency=low + + * source package automatically created by stdeb 0.8.5 + + -- JB JAILLET Wed, 07 Sep 2016 17:28:09 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7f8f011 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +7 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..905ce98 --- /dev/null +++ b/debian/control @@ -0,0 +1,14 @@ +Source: pyexcel-xls +Maintainer: C.W. +Section: python +Priority: optional +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 7) +Standards-Version: 3.9.1 + + + +Package: python-pyexcel-xls +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-pyexcel-io +Description: A wrapper library to read, manipulate and write data in xls + diff --git a/debian/files b/debian/files new file mode 100644 index 0000000..9e4344b --- /dev/null +++ b/debian/files @@ -0,0 +1 @@ +python-pyexcel-xls_0.2.2-1_all.deb python optional diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..fcbfffc --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +# This file was automatically generated by stdeb 0.8.5 at +# Wed, 07 Sep 2016 17:28:09 +0200 + +%: + dh $@ --with python2 + diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..bcc4bbb --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +extend-diff-ignore="\.egg-info$" \ No newline at end of file diff --git a/test.sh b/test.sh deleted file mode 100644 index 00c3550..0000000 --- a/test.sh +++ /dev/null @@ -1,3 +0,0 @@ - -pip freeze -nosetests --with-cov --cover-package pyexcel_xls --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_xls && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long