Skip to content

Commit ec73af0

Browse files
committed
update renderer plugin and update documentation
1 parent f08bdf0 commit ec73af0

File tree

4 files changed

+31
-21
lines changed

4 files changed

+31
-21
lines changed

.moban.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ configuration:
22
configuration_dir: "commons/config"
33
template_dir:
44
- "commons/templates"
5+
- "setupmobans/templates"
56
- ".moban.d"
67
configuration: django_excel.yml
78
targets:
@@ -10,7 +11,6 @@ targets:
1011
- "docs/source/conf.py": "docs/source/conf.py"
1112
- .travis.yml: travis.yml
1213
- requirements.txt: requirements.txt
13-
- LICENSE: LICENSE.jj2
1414
- MANIFEST.in: MANIFEST.in
1515
- "docs/source/index.rst": "docs/source/index.rst.jj2"
1616
- "tests/requirements.txt": "tests/requirements.txt"

README.rst

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,37 @@ django-excel - Let you focus on data, instead of file formats
88
.. image:: https://api.travis-ci.org/pyexcel/django-excel.svg?branch=master
99
:target: http://travis-ci.org/pyexcel/django-excel
1010

11-
.. image:: https://codecov.io/github/pyexcel/django-excel/coverage.png
12-
:target: https://codecov.io/github/pyexcel/django-excel
11+
.. image:: https://codecov.io/gh/pyexcel/django-excel/branch/master/graph/badge.svg
12+
:target: https://codecov.io/gh/pyexcel/django-excel
1313

1414
.. image:: https://img.shields.io/gitter/room/gitterHQ/gitter.svg
1515
:target: https://gitter.im/pyexcel/Lobby
1616

1717
.. image:: https://readthedocs.org/projects/django-excel/badge/?version=latest
1818
:target: http://django-excel.readthedocs.org/en/latest/
1919

20+
Support the project
21+
================================================================================
22+
23+
If your company has embedded pyexcel and its components into a revenue generating
24+
product, please `support me on patreon <https://www.patreon.com/bePatron?u=5537627>`_ to
25+
maintain the project and develop it further.
26+
27+
If you are an individual, you are welcome to support me too on patreon and for however long
28+
you feel like to. As a patreon, you will receive
29+
`early access to pyexcel related contents <https://www.patreon.com/pyexcel/posts>`_.
30+
31+
With your financial support, I will be able to invest
32+
a little bit more time in coding, documentation and writing interesting posts.
33+
34+
2035
Known constraints
2136
==================
2237

2338
Fonts, colors and charts are not supported.
2439

40+
Introduction
41+
================================================================================
2542
Here is a typical conversation between the developer and the user::
2643

2744
User: "I have uploaded an excel file"
@@ -86,6 +103,8 @@ The highlighted features are:
86103
`pyexcel-pygal`_ svg chart `pygal`_ 2.7, 3.3, 3.4, 3.5
87104
3.6, pypy
88105
`pyexcel-sortable`_ sortable table in html `csvtotable`_ same as above
106+
`pyexcel-gantt`_ gantt chart in html `frappe-gantt`_ except pypy, same
107+
as above
89108
======================== ======================= =============== ==================
90109

91110
.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io
@@ -113,7 +132,8 @@ The highlighted features are:
113132
.. _matplotlib: https://matplotlib.org
114133
.. _pyexcel-sortable: https://github.com/pyexcel/pyexcel-sortable
115134
.. _csvtotable: https://github.com/vividvilla/csvtotable
116-
135+
.. _pyexcel-gantt: https://github.com/pyexcel/pyexcel-gantt
136+
.. _frappe-gantt: https://github.com/frappe/gantt
117137

118138
In order to manage the list of plugins installed, you need to use pip to add or remove
119139
a plugin. When you use virtualenv, you can have different plugins per virtual
@@ -222,21 +242,6 @@ Here is the example viewing function codes:
222242
sheet = excel.pe.Sheet([[1, 2],[3, 4]])
223243
return excel.make_response(sheet, "csv")
224244
225-
Support the project
226-
================================================================================
227-
228-
If your company has embedded pyexcel and its components into a revenue generating
229-
product, please `support me on patreon <https://www.patreon.com/bePatron?u=5537627>`_ to
230-
maintain the project and develop it further.
231-
232-
If you are an individual, you are welcome to support me too on patreon and for however long
233-
you feel like to. As a patreon, you will receive
234-
`early access to pyexcel related contents <https://www.patreon.com/pyexcel/posts>`_.
235-
236-
With your financial support, I will be able to invest
237-
a little bit more time in coding, documentation and writing interesting posts.
238-
239-
240245
Development guide
241246
================================================================================
242247

@@ -309,6 +314,7 @@ Acceptance criteria
309314

310315

311316

317+
312318
License
313319
================================================================================
314320

docs/source/index.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ The highlighted features are:
7777
`pyexcel-pygal`_ svg chart `pygal`_ 2.7, 3.3, 3.4, 3.5
7878
3.6, pypy
7979
`pyexcel-sortable`_ sortable table in html `csvtotable`_ same as above
80+
`pyexcel-gantt`_ gantt chart in html `frappe-gantt`_ except pypy, same
81+
as above
8082
======================== ======================= =============== ==================
8183

8284
.. _pyexcel-io: https://github.com/pyexcel/pyexcel-io
@@ -104,7 +106,8 @@ The highlighted features are:
104106
.. _matplotlib: https://matplotlib.org
105107
.. _pyexcel-sortable: https://github.com/pyexcel/pyexcel-sortable
106108
.. _csvtotable: https://github.com/vividvilla/csvtotable
107-
109+
.. _pyexcel-gantt: https://github.com/pyexcel/pyexcel-gantt
110+
.. _frappe-gantt: https://github.com/frappe/gantt
108111

109112
In order to manage the list of plugins installed, you need to use pip to add or remove
110113
a plugin. When you use virtualenv, you can have different plugins per virtual

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
'e to read and write data in different excel file formats' +
1919
''
2020
)
21+
FILES = ['README.rst', 'CHANGELOG.rst']
2122
KEYWORDS = [
2223
'excel',
2324
'python',
@@ -112,7 +113,7 @@ def filter_out_test_code(file_handle):
112113
version=VERSION,
113114
author_email=EMAIL,
114115
description=DESCRIPTION,
115-
long_description=read_files('README.rst', 'CHANGELOG.rst'),
116+
long_description=read_files(*FILES),
116117
license=LICENSE,
117118
keywords=KEYWORDS,
118119
extras_require=EXTRAS_REQUIRE,

0 commit comments

Comments
 (0)