Skip to content

Commit

Permalink
🥚 🎡 release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Oct 19, 2017
1 parent f54cfee commit 07475f8
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 8 deletions.
13 changes: 11 additions & 2 deletions .moban.d/CUSTOM_README.rst.jj2
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,21 @@ Introduction
================================================================================

**{{name}}** {{description}}. The output is a `brython_modules.js`_ in your
current directory.
current directory. It is used to pack up `pyecharts.js`_

.. _brython_modules.js: https://github.com/chfw/pyecharts.js/tree/master/public/js
.. _pyecharts.js: https://chfw.github.io/pyecharts.js

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

{% block bottom_block %}
Limitation
================================================================================

It cannot find the `requirements.txt` file for you, which you need to figure it
out by yourself. Once you will have the dependency list(the dependency on
brython_stdlib.js), the packing step is straight foward.

Usage
================================================================================

Expand Down
22 changes: 20 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,38 @@ Introduction
================================================================================

**brython-pack** packages your Python packages/files into a brython_modules.js. The output is a `brython_modules.js`_ in your
current directory.
current directory. It is used to pack up `pyecharts.js`_

.. _brython_modules.js: https://github.com/chfw/pyecharts.js/tree/master/public/js
.. _pyecharts.js: https://chfw.github.io/pyecharts.js

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

Installation
================================================================================


You can install it via pip:

.. code-block:: bash
$ pip install brython-pack
or clone it and install it:

.. code-block:: bash
$ git clone http://github.com/chfw/brython-pack.git
$ cd brython-pack
$ python setup.py install
Limitation
================================================================================

It cannot find the `requirements.txt` file for you, which you need to figure it
out by yourself. Once you will have the dependency list(the dependency on
brython_stdlib.js), the packing step is straight foward.

Usage
================================================================================

Expand Down
2 changes: 1 addition & 1 deletion brython-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ contact: "wangc_2011@hotmail.com"
company: "C.W."
version: "0.0.1"
current_version: "0.0.1"
release: "0.0.0"
release: "0.0.1"
copyright_year: 2017
command_line_interface: "bp"
entry_point: "brython_pack.main:main"
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
''
)
URL = 'https://github.com/chfw/brython-pack'
DOWNLOAD_URL = '%s/archive/0.0.0.tar.gz' % URL
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
FILES = ['README.rst', 'CHANGELOG.rst']
KEYWORDS = [
'python'
Expand Down Expand Up @@ -50,8 +50,8 @@
EXTRAS_REQUIRE = {}
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
sys.executable)
GS_COMMAND = ('gs brython-pack v0.0.0 ' +
"Find 0.0.0 in changelog for more details")
GS_COMMAND = ('gs brython-pack v0.0.1 ' +
"Find 0.0.1 in changelog for more details")
here = os.path.abspath(os.path.dirname(__file__))


Expand Down

0 comments on commit 07475f8

Please sign in to comment.