initial debian packaging (#13102)

This commit is contained in:
Serghei Mihai 2016-09-07 15:37:53 +02:00
parent e91612fa55
commit 64aaece6fa
8 changed files with 55 additions and 12 deletions

View File

@ -1,8 +0,0 @@
all: test
test:
bash test.sh
document:
sphinx-autogen -o doc/source/generated/ doc/source/*.rst
sphinx-build -b html doc/source/ doc/build/

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
pyexcel-io (0.2.3-1) unstable; urgency=low
* source package automatically created by stdeb 0.8.5
-- C.W. <wangc_2011 (at) hotmail.com> Wed, 07 Sep 2016 15:27:51 +0200

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
7

36
debian/control vendored Normal file
View File

@ -0,0 +1,36 @@
Source: pyexcel-io
Maintainer: C.W. <wangc_2011 (at) hotmail.com>
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-io
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}
Description: A python library to read and write structured data in csv, z
================================================================================
pyexcel-io - Let you focus on data, instead of file formats
================================================================================
.
.. image:: https://api.travis-ci.org/pyexcel/pyexcel-io.svg?branch=master
:target: http://travis-ci.org/pyexcel/pyexcel-io
.
.. image:: https://codecov.io/github/pyexcel/pyexcel-io/coverage.png
:target: https://codecov.io/github/pyexcel/pyexcel-io
.
.. image:: https://readthedocs.org/projects/pyexcel-io/badge/?version=latest
:target: http://pyexcel-io.readthedocs.org/en/latest/
.
.
**pyexcel-io** provides **one** application programming interface(API) to read
and write the data in excel format, import the data into and export the data
from database. It provides support for csv(z) format, django database and
sqlalchemy supported databases. Its supported file formats are extended to cover
"xls", "xlsx", "ods" by the following extensions:
.

11
debian/rules vendored Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/make -f
# This file was automatically generated by stdeb 0.8.5 at
# Wed, 07 Sep 2016 15:27:51 +0200
%:
dh $@ --with python2

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

1
debian/source/options vendored Normal file
View File

@ -0,0 +1 @@
extend-diff-ignore="\.egg-info$"

View File

@ -1,4 +0,0 @@
pip freeze
nosetests --with-cov --cover-package pyexcel_io --cover-package tests --with-doctest --doctest-extension=.rst tests README.rst pyexcel_io && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long