Skip to content

Commit bb398b9

Browse files
committed
🥚 🎡 0.0.1 release
1 parent 092f778 commit bb398b9

File tree

9 files changed

+45
-8
lines changed

9 files changed

+45
-8
lines changed

.moban.d/CUSTOM_README.rst.jj2

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,9 @@
11
{% extends 'README.rst.jj2' %}
2+
3+
{%block documentation_link%}
4+
{%endblock%}
5+
6+
{%block features%}
7+
With `pybars3 <https://github.com/wbond/pybars3>`_, this library allow moban users to
8+
have handlebars template in their next documentation endeavour.
9+
{%endblock%}

.moban.d/custom_setup.py.jj2

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@
22

33
{%block platform_block%}
44
{%endblock%}
5+
6+
7+
{%block morefiles %} 'CONTRIBUTORS.rst',{%endblock%}

CONTRIBUTORS.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Author
2+
================================================================================
3+
4+
Charlie Liu
5+
6+
Contributors
7+
================================================================================
8+
9+
In alphabetical order:
10+
11+
* `C. W. <https://github.com/chfw>`_
12+
* `John Vandenberg <https://github.com/jayvdb>`_
13+
* `PRAJWAL M <https://github.com/PrajwalM2212>`_

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include README.rst
22
include CHANGELOG.rst
3+
include CONTRIBUTORS.rst

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ python_version= '3.6'
88

99
[packages]
1010
pybars3 = "*"
11+
lml>=0.0.7

README.rst

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,22 @@ moban-handlebars
99
:target: https://codecov.io/github/moremoban/moban-handlebars
1010

1111

12-
.. image:: https://readthedocs.org/projects/moban-handlebars/badge/?version=latest
13-
:target: http://moban-handlebars.readthedocs.org/en/latest/
1412

13+
With `pybars3 <https://github.com/wbond/pybars3>`_, this library allow moban users to
14+
have handlebars template in their next documentation endeavour.
1515

1616
Installation
1717
================================================================================
1818

19-
You can get it:
19+
20+
You can install moban-handlebars via pip:
21+
22+
.. code-block:: bash
23+
24+
$ pip install moban-handlebars
25+
26+
27+
or clone it and install it:
2028

2129
.. code-block:: bash
2230

moban-handlebars.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ contact: "[email protected]"
55
company: "Moremoban members and its contributors"
66
version: "0.0.1"
77
current_version: "0.0.1"
8-
release: "0.0.0"
8+
release: "0.0.1"
99
copyright_year: 2018
1010
license: MIT
1111
dependencies:
1212
- pybars3
13+
- lml>=0.0.7
1314
description: "Provide handlebars templating capability to moban."

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
pybars3
2+
lml>=0.0.7

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
'Provide handlebars templating capability to moban.'
2121
)
2222
URL = 'https://github.com/moremoban/moban-handlebars'
23-
DOWNLOAD_URL = '%s/archive/0.0.0.tar.gz' % URL
24-
FILES = ['README.rst', 'CHANGELOG.rst']
23+
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
24+
FILES = ['README.rst', 'CONTRIBUTORS.rst', 'CHANGELOG.rst']
2525
KEYWORDS = [
2626
'python',
2727
]
@@ -40,6 +40,7 @@
4040

4141
INSTALL_REQUIRES = [
4242
'pybars3',
43+
'lml>=0.0.7',
4344
]
4445
SETUP_COMMANDS = {}
4546

@@ -50,8 +51,8 @@
5051
# You do not need to read beyond this line
5152
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5253
sys.executable)
53-
GS_COMMAND = ('gs moban-handlebars v0.0.0 ' +
54-
"Find 0.0.0 in changelog for more details")
54+
GS_COMMAND = ('gs moban-handlebars v0.0.1 ' +
55+
"Find 0.0.1 in changelog for more details")
5556
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5657
'Please install gease to enable it.')
5758
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)