File tree 4 files changed +35
-8
lines changed
4 files changed +35
-8
lines changed Original file line number Diff line number Diff line change @@ -8,12 +8,21 @@ Introduction
8
8
================================================================================
9
9
10
10
**{{name}}** {{description}}. The output is a `brython_modules.js`_ in your
11
- current directory.
11
+ current directory. It is used to pack up `pyecharts.js`_
12
+
13
+ .. _brython_modules.js: https://github.com/chfw/pyecharts.js/tree/master/public/js
14
+ .. _pyecharts.js: https://chfw.github.io/pyecharts.js
12
15
13
- .. _brython_modules.js: https://github.com/chfw/bryecharts/tree/master/public/js
14
16
{% endblock %}
15
17
16
18
{% block bottom_block %}
19
+ Limitation
20
+ ================================================================================
21
+
22
+ It cannot find the `requirements.txt` file for you, which you need to figure it
23
+ out by yourself. Once you will have the dependency list(the dependency on
24
+ brython_stdlib.js), the packing step is straight foward.
25
+
17
26
Usage
18
27
================================================================================
19
28
Original file line number Diff line number Diff line change @@ -13,20 +13,38 @@ Introduction
13
13
================================================================================
14
14
15
15
**brython-pack ** packages your Python packages/files into a brython_modules.js. The output is a `brython_modules.js `_ in your
16
- current directory.
16
+ current directory. It is used to pack up `pyecharts.js `_
17
+
18
+ .. _brython_modules.js : https://github.com/chfw/pyecharts.js/tree/master/public/js
19
+ .. _pyecharts.js : https://chfw.github.io/pyecharts.js
17
20
18
- .. _brython_modules.js : https://github.com/chfw/bryecharts/tree/master/public/js
19
21
20
22
Installation
21
23
================================================================================
22
24
23
25
26
+ You can install it via pip:
27
+
28
+ .. code-block :: bash
29
+
30
+ $ pip install brython-pack
31
+
32
+
33
+ or clone it and install it:
34
+
24
35
.. code-block :: bash
25
36
26
37
$ git clone http://github.com/chfw/brython-pack.git
27
38
$ cd brython-pack
28
39
$ python setup.py install
29
40
41
+ Limitation
42
+ ================================================================================
43
+
44
+ It cannot find the `requirements.txt ` file for you, which you need to figure it
45
+ out by yourself. Once you will have the dependency list(the dependency on
46
+ brython_stdlib.js), the packing step is straight foward.
47
+
30
48
Usage
31
49
================================================================================
32
50
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ contact: "wangc_2011@hotmail.com"
6
6
company : " C.W."
7
7
version : " 0.0.1"
8
8
current_version : " 0.0.1"
9
- release : " 0.0.0 "
9
+ release : " 0.0.1 "
10
10
copyright_year : 2017
11
11
command_line_interface : " bp"
12
12
entry_point : " brython_pack.main:main"
Original file line number Diff line number Diff line change 22
22
''
23
23
)
24
24
URL = 'https://github.com/chfw/brython-pack'
25
- DOWNLOAD_URL = '%s/archive/0.0.0 .tar.gz' % URL
25
+ DOWNLOAD_URL = '%s/archive/0.0.1 .tar.gz' % URL
26
26
FILES = ['README.rst' , 'CHANGELOG.rst' ]
27
27
KEYWORDS = [
28
28
'python'
50
50
EXTRAS_REQUIRE = {}
51
51
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi' .format (
52
52
sys .executable )
53
- GS_COMMAND = ('gs brython-pack v0.0.0 ' +
54
- "Find 0.0.0 in changelog for more details" )
53
+ GS_COMMAND = ('gs brython-pack v0.0.1 ' +
54
+ "Find 0.0.1 in changelog for more details" )
55
55
here = os .path .abspath (os .path .dirname (__file__ ))
56
56
57
57
You can’t perform that action at this time.
0 commit comments