Skip to content

Commit dcf10a0

Browse files
committed
💎 release 0.0.2.1
1 parent 82041f1 commit dcf10a0

File tree

12 files changed

+82
-97
lines changed

12 files changed

+82
-97
lines changed

.moban.d/CUSTOM_README.rst.jj2

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
{% block documentation_link %}
44
{% endblock %}
55

6-
{% block features %}The project packages `pypi-mobans <https://github.com/moremoban/pypi>`_, `gitignore <https://github.com/github/gitignore>_` and distributes it via pypi.
7-
{% endblock %}
6+
{% block features %}The project packages `pypi-mobans <https://github.com/moremoban/pypi-mobans>`_, `gitignore <https://github.com/github/gitignore>`_ and distributes it via pypi.
7+
{% endblock %}
8+

.moban.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1+
requires:
2+
- type: git
3+
url: https://github.com/moremoban/pypi-mobans
4+
submodule: true
15
configuration:
26
template_dir:
37
- ".moban.d"
4-
- "mobans/templates"
8+
- "pypi-mobans:templates"
59
configuration: "pypi-mobans-pkg.yml"
610
targets:
711
- "README.rst": CUSTOM_README.rst.jj2

CHANGELOG.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
Change log
22
================================================================================
33

4-
0.0.1 - unreleased
4+
0.0.2.1 - 08-11-2018
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. use pypi-mobans version 0.0.2
11+
#. added License file
12+
13+
0.0.2 - 08-11-2018
514
--------------------------------------------------------------------------------
615

716
First release

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2018 by Onni Software Ltd. and its contributors
1+
Copyright (c) 2018-2019 by Onni Software Ltd. and its contributors and its contributors
22
All rights reserved.
33

44
Redistribution and use in source and binary forms of the software as well

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pypi-mobans-pkg
1212
:target: https://gitter.im/chfw_moban/Lobby
1313

1414

15-
The project packages `pypi-mobans <https://github.com/moremoban/pypi>`_, `gitignore <https://github.com/github/gitignore>_` and distributes it via pypi.
15+
The project packages `pypi-mobans <https://github.com/moremoban/pypi-mobans>`_, `gitignore <https://github.com/github/gitignore>`_ and distributes it via pypi.
1616

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

changelog.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
name: "pypi-mobans"
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- use pypi-mobans version 0.0.2
8+
- added License file
9+
date: 08-11-2018
10+
version: 0.0.2.1
411
- changes:
512
- action: First release
613
details:
714
- use pypi as pacakge distribution source
815
- versioning is applied
9-
date: unreleased
10-
version: 0.0.1
16+
date: 08-11-2018
17+
version: 0.0.2
1118

docs/source/conf.py

Lines changed: 23 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
'Scaffolding mobans for your Python project.' +
44
''
55
)
6-
# -*- coding: utf-8 -*-
7-
#
86
# Configuration file for the Sphinx documentation builder.
97
#
10-
# This file does only contain a selection of the most common options. For a
11-
# full list see the documentation:
8+
# This file only contains a selection of the most common options. For a full
9+
# list see the documentation:
1210
# http://www.sphinx-doc.org/en/master/config
1311

1412
# -- Path setup --------------------------------------------------------------
@@ -23,31 +21,22 @@
2321

2422
# -- Project information -----------------------------------------------------
2523

26-
project = u'pypi-mobans-pkg'
27-
copyright = u'2018 Onni Software Ltd.'
28-
author = u'C.W.'
24+
project = ''
25+
copyright = ''
26+
author = 'Onni Software Ltd. and its contributors'
2927

3028
# The short X.Y version
31-
version = u'0.0.1'
29+
version = '0.0.2.1'
3230
# The full version, including alpha/beta/rc tags
33-
release = u'0.0.1'
31+
release = '0.0.2.1'
3432

3533

3634
# -- General configuration ---------------------------------------------------
3735

38-
# If your documentation needs a minimal Sphinx version, state it here.
39-
#
40-
# needs_sphinx = '1.0'
41-
4236
# Add any Sphinx extension module names here, as strings. They can be
4337
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
4438
# ones.
45-
extensions = [
46-
'sphinx.ext.autodoc',
47-
'sphinx.ext.doctest',
48-
'sphinx.ext.intersphinx',
49-
'sphinx.ext.viewcode',
50-
]
39+
extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx', 'sphinx.ext.viewcode',]
5140

5241
# Add any paths that contain templates here, relative to this directory.
5342
templates_path = ['_templates']
@@ -59,7 +48,7 @@
5948
source_suffix = '.rst'
6049

6150
# The master toctree document.
62-
master_doc = 'index'
51+
master_doc = ''
6352

6453
# The language for content autogenerated by Sphinx. Refer to documentation
6554
# for a list of supported languages.
@@ -73,9 +62,6 @@
7362
# This pattern also affects html_static_path and html_extra_path.
7463
exclude_patterns = []
7564

76-
# The name of the Pygments (syntax highlighting) style to use.
77-
pygments_style = 'sphinx'
78-
7965

8066
# -- Options for HTML output -------------------------------------------------
8167

@@ -106,75 +92,37 @@
10692
# html_sidebars = {}
10793

10894

109-
# -- Options for HTMLHelp output ---------------------------------------------
110-
111-
# Output file base name for HTML help builder.
112-
htmlhelp_basename = 'pypi-mobans-pkgdoc'
113-
114-
115-
# -- Options for LaTeX output ------------------------------------------------
116-
117-
latex_elements = {
118-
# The paper size ('letterpaper' or 'a4paper').
119-
#
120-
# 'papersize': 'letterpaper',
121-
122-
# The font size ('10pt', '11pt' or '12pt').
123-
#
124-
# 'pointsize': '10pt',
125-
126-
# Additional stuff for the LaTeX preamble.
127-
#
128-
# 'preamble': '',
95+
# -- Options for Epub output -------------------------------------------------
12996

130-
# Latex figure (float) alignment
131-
#
132-
# 'figure_align': 'htbp',
133-
}
134-
135-
# Grouping the document tree into LaTeX files. List of tuples
136-
# (source start file, target name, title,
137-
# author, documentclass [howto, manual, or own class]).
138-
latex_documents = [
139-
(master_doc, 'pypi-mobans-pkg.tex', u'pypi-mobans-pkg Documentation',
140-
u'Onni Software Ltd.', 'manual'),
141-
]
142-
143-
144-
# -- Options for manual page output ------------------------------------------
145-
146-
# One entry per manual page. List of tuples
147-
# (source start file, name, description, authors, manual section).
148-
man_pages = [
149-
(master_doc, 'pypi-mobans-pkg', u'pypi-mobans-pkg Documentation',
150-
[author], 1)
151-
]
97+
# Bibliographic Dublin Core info.
98+
epub_title = project
15299

100+
# The unique identifier of the text. This can be a ISBN number
101+
# or the project homepage.
102+
#
103+
# epub_identifier = ''
153104

154-
# -- Options for Texinfo output ----------------------------------------------
105+
# A unique identification for the text.
106+
#
107+
# epub_uid = ''
155108

156-
# Grouping the document tree into Texinfo files. List of tuples
157-
# (source start file, target name, title, author,
158-
# dir menu entry, description, category)
159-
texinfo_documents = [
160-
(master_doc, 'pypi-mobans-pkg', u'pypi-mobans-pkg Documentation',
161-
author, 'pypi-mobans-pkg', 'One line description of project.',
162-
'Miscellaneous'),
163-
]
109+
# A list of files that should not be packed into the epub file.
110+
epub_exclude_files = ['search.html']
164111

165112
# -- Extension configuration -------------------------------------------------
166113
# -- Options for intersphinx extension ---------------------------------------
167114

168115
# Example configuration for intersphinx: refer to the Python standard library.
169116
intersphinx_mapping = {'https://docs.python.org/': None}
117+
170118
# TODO: html_theme not configurable upstream
171119
html_theme = 'default'
172120

173121
# TODO: DESCRIPTION not configurable upstream
174122
texinfo_documents = [
175123
('index', 'pypi-mobans-pkg',
176124
'pypi-mobans-pkg Documentation',
177-
'Onni Software Ltd.', 'pypi-mobans-pkg',
125+
'Onni Software Ltd. and its contributors', 'pypi-mobans-pkg',
178126
DESCRIPTION,
179127
'Miscellaneous'),
180128
]

pypi-mobans-pkg.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: "pypi-mobans-pkg"
22
organisation: "moremoban"
33
author: "C.W."
44
5-
company: "Onni Software Ltd."
6-
version: "0.0.1"
7-
current_version: "0.0.1"
8-
release: "0.0.1"
9-
copyright_year: 2018
5+
company: "Onni Software Ltd. and its contributors"
6+
version: "0.0.2.1"
7+
current_version: "0.0.2.1"
8+
release: "0.0.2.1"
9+
copyright_year: 2018-2019
1010
license: public license
1111
dependencies:
1212
- lml

pypi_mobans_pkg/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2.1"
22
__author__ = "C.W."

0 commit comments

Comments
 (0)