Skip to content

Commit 4761522

Browse files
committed
remove duplicated information scattered around pyexcel components
1 parent 4e9ca81 commit 4761522

File tree

16 files changed

+134
-57
lines changed

16 files changed

+134
-57
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/docs/source/.#conf.py.jj2

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{% extends 'docs\source\conf.py.jj2'%}
2+

.moban.d/docs/source/conf.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{% extends 'docs/source/conf.py.jj2'%}
2+
3+
{%block custom_doc_theme%}
4+
html_theme = 'default'
5+
def setup(app):
6+
app.add_stylesheet('theme_overrides.css')
7+
{%endblock%}
8+

.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: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{% extends 'setup.py.jj2' %}
2+
{%block additional_keywords%}
3+
'http'
4+
{%endblock %}
5+
6+
{%block additional_classifiers%}
7+
'Environment :: Web Environment',
8+
'Topic :: Internet :: WWW/HTTP',
9+
'Topic :: Software Development :: Libraries :: Python Modules',
10+
'Development Status :: 3 - Alpha',
11+
'Programming Language :: Python :: 2',
12+
'Programming Language :: Python :: 2.6',
13+
'Programming Language :: Python :: 2.7',
14+
'Programming Language :: Python :: 3',
15+
'Programming Language :: Python :: 3.3',
16+
'Programming Language :: Python :: 3.4',
17+
'Programming Language :: Python :: 3.5',
18+
'Programming Language :: Python :: Implementation :: PyPy'
19+
{%endblock%}}
20+

.moban.d/tests/requirements.txt

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

.moban.d/travis.yml

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

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,17 @@ notifications:
55
env:
66
global:
77
python:
8-
- 2.6
98
- 2.7
9+
- 2.6
1010
- 3.3
1111
- 3.4
1212
- 3.5
1313
- pypy
1414
install:
15+
- rm applymoban.py
16+
- pip install -r requirements.txt
1517
- pip install -r tests/requirements.txt
1618
script:
1719
make test
1820
after_success:
19-
codecov
21+
codecov

LICENSE

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
Copyright (c) 2015 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-webio' 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include VERSION
1+
include README.rst

0 commit comments

Comments
 (0)