Skip to content

Commit 1b07848

Browse files
committed
V1.17
1 parent 3801f37 commit 1b07848

File tree

2 files changed

+33
-32
lines changed

2 files changed

+33
-32
lines changed

doc/source/conf.py

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'1.16'
62+
version = u'1.17'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'0'
64+
release = version
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.
@@ -118,8 +118,8 @@
118118
# further. For a list of options available for each theme, see the
119119
# documentation.
120120
html_theme_options = {
121-
'sticky_navigation' : False,
122-
'collapse_navigation' : True
121+
'sticky_navigation': False,
122+
'collapse_navigation': True
123123
}
124124

125125
# Add any paths that contain custom themes here, relative to this directory.
@@ -148,9 +148,9 @@
148148

149149
html_context = {
150150
'display_github': True,
151-
'github_user': 'pylessard',
152-
'github_repo': 'python-udsoncan',
153-
'github_version': 'master/doc'
151+
'github_user': 'pylessard',
152+
'github_repo': 'python-udsoncan',
153+
'github_version': 'master/doc'
154154
}
155155

156156
# Add any extra paths that contain custom files (such as robots.txt or
@@ -219,17 +219,17 @@
219219
# -- Options for LaTeX output ---------------------------------------------
220220

221221
latex_elements = {
222-
# The paper size ('letterpaper' or 'a4paper').
223-
#'papersize': 'letterpaper',
222+
# The paper size ('letterpaper' or 'a4paper').
223+
# 'papersize': 'letterpaper',
224224

225-
# The font size ('10pt', '11pt' or '12pt').
226-
#'pointsize': '10pt',
225+
# The font size ('10pt', '11pt' or '12pt').
226+
# 'pointsize': '10pt',
227227

228-
# Additional stuff for the LaTeX preamble.
229-
#'preamble': '',
228+
# Additional stuff for the LaTeX preamble.
229+
# 'preamble': '',
230230

231-
# Latex figure (float) alignment
232-
#'figure_align': 'htbp',
231+
# Latex figure (float) alignment
232+
# 'figure_align': 'htbp',
233233
}
234234

235235
# Grouping the document tree into LaTeX files. List of tuples
@@ -297,5 +297,6 @@
297297
# If true, do not generate a @detailmenu in the "Top" node's menu.
298298
#texinfo_no_detailmenu = False
299299

300+
300301
def setup(app):
301302
app.add_stylesheet('theme_overrides.css')

setup.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,28 @@
88
long_description = f.read()
99

1010
setup(
11-
name = 'udsoncan',
12-
packages = find_packages(exclude=['test']),
13-
package_data={
14-
'': ['*.conf'],
15-
},
16-
version = '1.16',
17-
description = 'Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry.',
18-
long_description=long_description,
19-
author = 'Pier-Yves Lessard',
20-
author_email = 'py.lessard@gmail.com',
21-
license='MIT',
22-
url = 'https://github.com/pylessard/python-udsoncan',
23-
download_url = 'https://github.com/pylessard/python-udsoncan/archive/v1.16.tar.gz',
24-
keywords = ['uds', '14229', 'iso-14229', 'diagnostic', 'automotive'],
25-
python_requires='>=3.0',
26-
classifiers = [
11+
name='udsoncan',
12+
packages=find_packages(exclude=['test']),
13+
package_data={
14+
'': ['*.conf'],
15+
},
16+
version='1.17',
17+
description='Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry.',
18+
long_description=long_description,
19+
author='Pier-Yves Lessard',
20+
author_email='py.lessard@gmail.com',
21+
license='MIT',
22+
url='https://github.com/pylessard/python-udsoncan',
23+
download_url='https://github.com/pylessard/python-udsoncan/archive/v1.17.tar.gz',
24+
keywords=['uds', '14229', 'iso-14229', 'diagnostic', 'automotive'],
25+
python_requires='>=3.0',
26+
classifiers=[
2727
"Programming Language :: Python",
2828
"Programming Language :: Python :: 3",
2929
"Development Status :: 4 - Beta",
3030
"Operating System :: POSIX :: Linux",
3131
"Intended Audience :: Developers",
3232
"License :: OSI Approved :: MIT License",
3333
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
34-
],
34+
],
3535
)

0 commit comments

Comments
 (0)