Skip to content

Commit e07d18d

Browse files
committed
update requirements.txt
1 parent f112e05 commit e07d18d

File tree

6 files changed

+30
-8
lines changed

6 files changed

+30
-8
lines changed

.moban.d/gantt.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ Here is `a sample csv`_ file::
1010

1111
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
1212

13-
Here's what you need to do in your program:
13+
What you can do is to view it with pyexcel's `command line interface`_:
14+
15+
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
16+
17+
18+
Programmatically, you can do the following:
1419

1520
.. code-block:: python
1621
@@ -20,7 +25,8 @@ Here's what you need to do in your program:
2025
p.save_as(file_name='tasks.csv',
2126
dest_file_name='tasks.gantt.html')
2227
23-
Alternatively, you can do it with pyexcel's `command line interface`_:
28+
29+
Alternatively, you can save the file as:
2430

2531
.. code-block:: bash
2632

README.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,12 @@ Here is `a sample csv`_ file::
4747

4848
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
4949

50-
Here's what you need to do in your program:
50+
What you can do is to view it with pyexcel's `command line interface`_:
51+
52+
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
53+
54+
55+
Programmatically, you can do the following:
5156

5257
.. code-block:: python
5358
@@ -57,7 +62,8 @@ Here's what you need to do in your program:
5762
p.save_as(file_name='tasks.csv',
5863
dest_file_name='tasks.gantt.html')
5964
60-
Alternatively, you can do it with pyexcel's `command line interface`_:
65+
66+
Alternatively, you can save the file as:
6167

6268
.. code-block:: bash
6369

docs/source/index.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ Here is `a sample csv`_ file::
2323

2424
.. image:: https://github.com/pyexcel/pyexcel-gantt/raw/master/demo/demo.png
2525

26-
Here's what you need to do in your program:
26+
What you can do is to view it with pyexcel's `command line interface`_:
27+
28+
pyexcel view --in-browser --output-file-type gantt.html demo/tasks.csv
29+
30+
31+
Programmatically, you can do the following:
2732

2833
.. code-block:: python
2934
@@ -33,7 +38,8 @@ Here's what you need to do in your program:
3338
p.save_as(file_name='tasks.csv',
3439
dest_file_name='tasks.gantt.html')
3540
36-
Alternatively, you can do it with pyexcel's `command line interface`_:
41+
42+
Alternatively, you can save the file as:
3743

3844
.. code-block:: bash
3945

pyexcel-gantt.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ nick_name: "gantt"
44
version: "0.0.1"
55
current_version: "0.0.1"
66
release: "0.0.1"
7-
dependencies: []
7+
dependencies:
8+
- jinja2
89
description: "Draw gantt chart using frappe-gantt module for pyexcel data"

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jinja2

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,13 @@
4040
]
4141

4242
INSTALL_REQUIRES = [
43+
'jinja2',
4344
]
4445

4546

4647
PACKAGES = find_packages(exclude=['ez_setup', 'examples', 'tests'])
47-
EXTRAS_REQUIRE = {}
48+
EXTRAS_REQUIRE = {
49+
}
4850

4951

5052
def read_files(*files):

0 commit comments

Comments
 (0)