Skip to content

Commit df8f74a

Browse files
committed
🥚 🎡 release 0.0.1
1 parent d697cb9 commit df8f74a

File tree

5 files changed

+64
-6
lines changed

5 files changed

+64
-6
lines changed

.moban.d/CUSTOM_README.rst.jj2

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,26 @@ You can do:
2929
Tom Preston-Werner made TOML Example
3030
{% endraw %}
3131

32+
NOTE
33+
--------
34+
35+
For any of the following data formats, you elect to install by yourself.
36+
37+
.. csv-table:: Supported formats by pluggable backend modules
38+
:header: "Format", "Type", "Required backend"
39+
:widths: 15, 10, 40
40+
41+
Amazon Ion, ion, ``anyconfig-ion-backend``
42+
BSON, bson, ``anyconfig-bson-backend``
43+
CBOR, cbor, ``anyconfig-cbor-backend`` or ``anyconfig-cbor2-backend``
44+
ConifgObj, configobj, ``anyconfig-configobj-backend``
45+
MessagePack, msgpack, ``anyconfig-msgpack-backend``
46+
47+
Or you could choose to install all:
48+
49+
.. code-block:: bash
50+
51+
$ pip install moban-anyconfig[all-backends]
52+
53+
3254
{% endblock %}

README.rst

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ moban-anyconfig
77

88
.. image:: https://codecov.io/github/moremoban/moban-anyconfig/coverage.png
99
:target: https://codecov.io/github/moremoban/moban-anyconfig
10+
.. image:: https://badge.fury.io/py/moban-anyconfig.svg
11+
:target: https://pypi.org/project/moban-anyconfig
12+
13+
.. image:: https://pepy.tech/badge/moban-anyconfig/month
14+
:target: https://pepy.tech/project/moban-anyconfig/month
15+
1016
.. image:: https://img.shields.io/github/stars/moremoban/moban-anyconfig.svg?style=social&maxAge=3600&label=Star
1117
:target: https://github.com/moremoban/moban-anyconfig/stargazers
1218

@@ -35,11 +41,41 @@ You can do:
3541
$ cat moban.output
3642
Tom Preston-Werner made TOML Example
3743
44+
NOTE
45+
--------
46+
47+
For any of the following data formats, you elect to install by yourself.
48+
49+
.. csv-table:: Supported formats by pluggable backend modules
50+
:header: "Format", "Type", "Required backend"
51+
:widths: 15, 10, 40
52+
53+
Amazon Ion, ion, ``anyconfig-ion-backend``
54+
BSON, bson, ``anyconfig-bson-backend``
55+
CBOR, cbor, ``anyconfig-cbor-backend`` or ``anyconfig-cbor2-backend``
56+
ConifgObj, configobj, ``anyconfig-configobj-backend``
57+
MessagePack, msgpack, ``anyconfig-msgpack-backend``
58+
59+
Or you could choose to install all:
60+
61+
.. code-block:: bash
62+
63+
$ pip install moban-anyconfig[all-backends]
64+
65+
3866
3967
Installation
4068
================================================================================
4169

42-
You can get it:
70+
71+
You can install moban-anyconfig via pip:
72+
73+
.. code-block:: bash
74+
75+
$ pip install moban-anyconfig
76+
77+
78+
or clone it and install it:
4379

4480
.. code-block:: bash
4581

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# The short X.Y version
2323
version = '0.0.1'
2424
# The full version, including alpha/beta/rc tags
25-
release = '0.0.0'
25+
release = '0.0.1'
2626

2727
# -- General configuration ---------------------------------------------------
2828

moban-anyconfig.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contact: "[email protected]"
55
company: "moban dev team"
66
version: "0.0.1"
77
current_version: "0.0.1"
8-
release: "0.0.0"
8+
release: "0.0.1"
99
copyright_year: 2020
1010
license: mit
1111
dependencies:

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"Read data of any format and any location for moban template rendering"
4040
)
4141
URL = "https://github.com/moremoban/moban-anyconfig"
42-
DOWNLOAD_URL = "%s/archive/0.0.0.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -72,8 +72,8 @@
7272
}
7373
# You do not need to read beyond this line
7474
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
75-
GS_COMMAND = ("gs moban-anyconfig v0.0.0 " +
76-
"Find 0.0.0 in changelog for more details")
75+
GS_COMMAND = ("gs moban-anyconfig v0.0.1 " +
76+
"Find 0.0.1 in changelog for more details")
7777
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7878
"Please install gease to enable it.")
7979
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)