Skip to content

Commit 2f2c0e1

Browse files
committed
🥚 🎡 release 0.0.1
1 parent 8c68fc2 commit 2f2c0e1

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ name = 'pypi'
77
python_version= '3.6'
88

99
[packages]
10+
gease = "*"
1011

1112
[dev-packages]
1213
nose = "*"

README.rst

+15-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ moban-jinja2-github
77

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

@@ -17,7 +23,15 @@ moban-jinja2-github
1723
Installation
1824
================================================================================
1925

20-
You can get it:
26+
27+
You can install moban-jinja2-github via pip:
28+
29+
.. code-block:: bash
30+
31+
$ pip install moban-jinja2-github
32+
33+
34+
or clone it and install it:
2135

2236
.. code-block:: bash
2337

docs/source/conf.py

+1-1
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-jinja2-github.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contact: "[email protected]"
55
company: "chfw"
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: newbsd
1111
dependencies:

requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gease

setup.py

+6-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"Github specific filters, tests and globals"
4040
)
4141
URL = "https://github.com/moremoban/moban-jinja2-github"
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",
@@ -62,15 +62,17 @@
6262

6363

6464
INSTALL_REQUIRES = [
65+
"gease",
6566
]
6667
SETUP_COMMANDS = {}
6768

6869
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
69-
EXTRAS_REQUIRE = {}
70+
EXTRAS_REQUIRE = {
71+
}
7072
# You do not need to read beyond this line
7173
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
72-
GS_COMMAND = ("gs moban-jinja2-github v0.0.0 " +
73-
"Find 0.0.0 in changelog for more details")
74+
GS_COMMAND = ("gs moban-jinja2-github v0.0.1 " +
75+
"Find 0.0.1 in changelog for more details")
7476
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7577
"Please install gease to enable it.")
7678
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)