Skip to content

Commit 07475f8

Browse files
committed
🥚 🎡 release 0.0.1
1 parent f54cfee commit 07475f8

File tree

4 files changed

+35
-8
lines changed

4 files changed

+35
-8
lines changed

.moban.d/CUSTOM_README.rst.jj2

+11-2
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,21 @@ Introduction
88
================================================================================
99

1010
**{{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
1215

13-
.. _brython_modules.js: https://github.com/chfw/bryecharts/tree/master/public/js
1416
{% endblock %}
1517

1618
{% 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+
1726
Usage
1827
================================================================================
1928

README.rst

+20-2
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,38 @@ Introduction
1313
================================================================================
1414

1515
**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
1720

18-
.. _brython_modules.js: https://github.com/chfw/bryecharts/tree/master/public/js
1921

2022
Installation
2123
================================================================================
2224

2325

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+
2435
.. code-block:: bash
2536
2637
$ git clone http://github.com/chfw/brython-pack.git
2738
$ cd brython-pack
2839
$ python setup.py install
2940
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+
3048
Usage
3149
================================================================================
3250

brython-pack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ contact: "wangc_2011@hotmail.com"
66
company: "C.W."
77
version: "0.0.1"
88
current_version: "0.0.1"
9-
release: "0.0.0"
9+
release: "0.0.1"
1010
copyright_year: 2017
1111
command_line_interface: "bp"
1212
entry_point: "brython_pack.main:main"

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
''
2323
)
2424
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
2626
FILES = ['README.rst', 'CHANGELOG.rst']
2727
KEYWORDS = [
2828
'python'
@@ -50,8 +50,8 @@
5050
EXTRAS_REQUIRE = {}
5151
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5252
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")
5555
here = os.path.abspath(os.path.dirname(__file__))
5656

5757

0 commit comments

Comments
 (0)