Skip to content

Commit 0eea600

Browse files
committed
remove duplicated information scattered around pyexcel and its components
1 parent 254b006 commit 0eea600

15 files changed

+122
-44
lines changed

.moban.d/README.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{%extends 'README.rst.jj2' %}
2+
3+
{%block description%}
4+
**pyexcel-ods** is a tiny wrapper library to read, manipulate and write data in
5+
ods fromat using python 2.6 and python 2.7. You are likely to use it with
6+
`pyexcel <https://github.com/pyexcel/pyexcel>`_.
7+
`pyexcel-ods3 <https://github.com/pyexcel/pyexcel-ods3>`_ is a sister library that
8+
does the same thing but supports Python 3.3 and 3.4 and depends on lxml.
9+
{%endblock%}
10+
11+
{%block extras %}
12+
Credits
13+
================================================================================
14+
15+
ODSReader is originally written by `Marco Conti <https://github.com/marcoconti83/read-ods-with-odfpy>`_
16+
{%endblock%}

.moban.d/requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{% for dependency in dependencies: %}
2+
{{dependency}}
3+
{% endfor %}

.moban.d/setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{% extends 'setup.py.jj2' %}
2+
3+
{%block additional_keywords%}
4+
"plain",
5+
"simple",
6+
"grid",
7+
"pipe",
8+
"orgtbl",
9+
"rst",
10+
"mediawiki",
11+
"latex",
12+
"latex_booktabs",
13+
"json"
14+
{%endblock%}
15+
16+
{%block additional_classifiers%}
17+
'Development Status :: 3 - Alpha',
18+
'Programming Language :: Python :: 2.7',
19+
'Programming Language :: Python :: 3.3',
20+
'Programming Language :: Python :: 3.4',
21+
'Programming Language :: Python :: Implementation :: PyPy'
22+
{%endblock%}}
23+

.moban.d/tests/requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{% extends 'tests/requirements.txt.jj2' %}
2+
{%block extras %}
3+
pyexcel
4+
{%endblock%}

.moban.d/travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{% extends "travis.yml.jj2" %}
2+
3+
{%block test_other_python_versions%} - 2.6
4+
{%endblock%}
5+

.travis.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@ notifications:
55
env:
66
global:
77
python:
8-
- 2.6
98
- 2.7
10-
- 3.3
11-
- 3.4
12-
- 3.5
13-
- pypy
9+
- 2.6
1410
install:
11+
- rm applymoban.py
1512
- pip install -r requirements.txt
1613
- pip install -r tests/requirements.txt
1714
script:
1815
make test
1916
after_success:
20-
codecov
17+
codecov

LICENSE

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
Copyright (c) 2015-2016 by Onni Software Ltd.
1+
Copyright (c) 2015-2016 by Onni Software Ltd. and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well
55
as documentation, with or without modification, are permitted provided
66
that the following conditions are met:
77

8-
* Redistributions of source code must retain the above copyright
9-
notice, this list of conditions and the following disclaimer.
8+
* Redistributions of source code must retain the above copyright notice, this
9+
list of conditions and the following disclaimer.
1010

11-
* Redistributions in binary form must reproduce the above
12-
copyright notice, this list of conditions and the following
13-
disclaimer in the documentation and/or other materials provided
14-
with the distribution.
11+
* Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
1514

16-
* The names of the contributors may not be used to endorse or
17-
promote products derived from this software without specific
18-
prior written permission.
15+
* Neither the name of 'pyexcel-text' nor the names of the contributors
16+
may not be used to endorse or promote products derived from this software
17+
without specific prior written permission.
1918

2019
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
2120
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
include README.rst
2-
include VERSION

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ It is a plugin to `pyexcel <https://github.com/pyexcel/pyexcel>`__ and extends i
2525
Usage
2626
======
2727

28+
Here is the example usage::
29+
30+
.. code-block: python
31+
2832
>>> import pyexcel as pe
2933
>>> import pyexcel.ext.text as text
3034
>>> content = [

VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)