Skip to content

Commit 6bdc2a0

Browse files
committed
Release v1.9
1 parent a5b1df2 commit 6bdc2a0

File tree

2 files changed

+70
-69
lines changed

2 files changed

+70
-69
lines changed

doc/source/conf.py

+56-55
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- General configuration ------------------------------------------------
2525

2626
# If your documentation needs a minimal Sphinx version, state it here.
27-
#needs_sphinx = '1.0'
27+
# needs_sphinx = '1.0'
2828

2929
# Add any Sphinx extension module names here, as strings. They can be
3030
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
@@ -33,7 +33,7 @@
3333
'sphinx.ext.autodoc',
3434
'sphinx.ext.mathjax',
3535
'sphinx.ext.viewcode',
36-
"sphinxcontrib.jquery"
36+
"sphinxcontrib.jquery"
3737
]
3838

3939
# Add any paths that contain templates here, relative to this directory.
@@ -45,7 +45,7 @@
4545
source_suffix = '.rst'
4646

4747
# The encoding of source files.
48-
#source_encoding = 'utf-8-sig'
48+
# source_encoding = 'utf-8-sig'
4949

5050
# The master toctree document.
5151
master_doc = 'index'
@@ -60,7 +60,7 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = u'1.8'
63+
version = u'1.9'
6464
# The full version, including alpha/beta/rc tags.
6565
release = version
6666

@@ -73,37 +73,37 @@
7373

7474
# There are two options for replacing |today|: either, you set today to some
7575
# non-false value, then it is used:
76-
#today = ''
76+
# today = ''
7777
# Else, today_fmt is used as the format for a strftime call.
78-
#today_fmt = '%B %d, %Y'
78+
# today_fmt = '%B %d, %Y'
7979

8080
# List of patterns, relative to source directory, that match files and
8181
# directories to ignore when looking for source files.
8282
exclude_patterns = []
8383

8484
# The reST default role (used for this markup: `text`) to use for all
8585
# documents.
86-
#default_role = None
86+
# default_role = None
8787

8888
# If true, '()' will be appended to :func: etc. cross-reference text.
89-
#add_function_parentheses = True
89+
# add_function_parentheses = True
9090

9191
# If true, the current module name will be prepended to all description
9292
# unit titles (such as .. function::).
93-
#add_module_names = True
93+
# add_module_names = True
9494

9595
# If true, sectionauthor and moduleauthor directives will be shown in the
9696
# output. They are ignored by default.
97-
#show_authors = False
97+
# show_authors = False
9898

9999
# The name of the Pygments (syntax highlighting) style to use.
100100
pygments_style = 'default'
101101

102102
# A list of ignored prefixes for module index sorting.
103-
#modindex_common_prefix = []
103+
# modindex_common_prefix = []
104104

105105
# If true, keep warnings as "system message" paragraphs in the built documents.
106-
#keep_warnings = False
106+
# keep_warnings = False
107107

108108
# If true, `todo` and `todoList` produce output, else they produce nothing.
109109
todo_include_todos = False
@@ -128,23 +128,23 @@
128128
}
129129

130130
# Add any paths that contain custom themes here, relative to this directory.
131-
#html_theme_path = []
131+
# html_theme_path = []
132132

133133
# The name for this set of Sphinx documents. If None, it defaults to
134134
# "<project> v<release> documentation".
135-
#html_title = None
135+
# html_title = None
136136

137137
# A shorter title for the navigation bar. Default is the same as html_title.
138-
#html_short_title = None
138+
# html_short_title = None
139139

140140
# The name of an image file (relative to this directory) to place at the top
141141
# of the sidebar.
142-
#html_logo = None
142+
# html_logo = None
143143

144144
# The name of an image file (relative to this directory) to use as a favicon of
145145
# the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
146146
# pixels large.
147-
#html_favicon = None
147+
# html_favicon = None
148148

149149
# Add any paths that contain custom static files (such as style sheets) here,
150150
# relative to this directory. They are copied after the builtin static files,
@@ -153,88 +153,88 @@
153153

154154
html_context = {
155155
'display_github': True,
156-
'github_user': 'pylessard',
157-
'github_repo': 'python-can-isotp',
158-
'github_version': 'master/doc'
156+
'github_user': 'pylessard',
157+
'github_repo': 'python-can-isotp',
158+
'github_version': 'master/doc'
159159
}
160160

161161
# Add any extra paths that contain custom files (such as robots.txt or
162162
# .htaccess) here, relative to this directory. These files are copied
163163
# directly to the root of the documentation.
164-
#html_extra_path = []
164+
# html_extra_path = []
165165

166166
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
167167
# using the given strftime format.
168-
#html_last_updated_fmt = '%b %d, %Y'
168+
# html_last_updated_fmt = '%b %d, %Y'
169169

170170
# If true, SmartyPants will be used to convert quotes and dashes to
171171
# typographically correct entities.
172-
#html_use_smartypants = True
172+
# html_use_smartypants = True
173173

174174
# Custom sidebar templates, maps document names to template names.
175-
#html_sidebars = {}
175+
# html_sidebars = {}
176176

177177
# Additional templates that should be rendered to pages, maps page names to
178178
# template names.
179-
#html_additional_pages = {}
179+
# html_additional_pages = {}
180180

181181
# If false, no module index is generated.
182-
#html_domain_indices = True
182+
# html_domain_indices = True
183183

184184
# If false, no index is generated.
185-
#html_use_index = True
185+
# html_use_index = True
186186

187187
# If true, the index is split into individual pages for each letter.
188-
#html_split_index = False
188+
# html_split_index = False
189189

190190
# If true, links to the reST sources are added to the pages.
191-
#html_show_sourcelink = True
191+
# html_show_sourcelink = True
192192

193193
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
194-
#html_show_sphinx = True
194+
# html_show_sphinx = True
195195

196196
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
197-
#html_show_copyright = True
197+
# html_show_copyright = True
198198

199199
# If true, an OpenSearch description file will be output, and all pages will
200200
# contain a <link> tag referring to it. The value of this option must be the
201201
# base URL from which the finished HTML is served.
202-
#html_use_opensearch = ''
202+
# html_use_opensearch = ''
203203

204204
# This is the file name suffix for HTML files (e.g. ".xhtml").
205-
#html_file_suffix = None
205+
# html_file_suffix = None
206206

207207
# Language to be used for generating the HTML full-text search index.
208208
# Sphinx supports the following languages:
209209
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
210210
# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
211-
#html_search_language = 'en'
211+
# html_search_language = 'en'
212212

213213
# A dictionary with options for the search language support, empty by default.
214214
# Now only 'ja' uses this config value
215-
#html_search_options = {'type': 'default'}
215+
# html_search_options = {'type': 'default'}
216216

217217
# The name of a javascript file (relative to the configuration directory) that
218218
# implements a search results scorer. If empty, the default will be used.
219-
#html_search_scorer = 'scorer.js'
219+
# html_search_scorer = 'scorer.js'
220220

221221
# Output file base name for HTML help builder.
222222
htmlhelp_basename = 'canisotpdoc'
223223

224224
# -- Options for LaTeX output ---------------------------------------------
225225

226226
latex_elements = {
227-
# The paper size ('letterpaper' or 'a4paper').
228-
#'papersize': 'letterpaper',
227+
# The paper size ('letterpaper' or 'a4paper').
228+
# 'papersize': 'letterpaper',
229229

230-
# The font size ('10pt', '11pt' or '12pt').
231-
#'pointsize': '10pt',
230+
# The font size ('10pt', '11pt' or '12pt').
231+
# 'pointsize': '10pt',
232232

233-
# Additional stuff for the LaTeX preamble.
234-
#'preamble': '',
233+
# Additional stuff for the LaTeX preamble.
234+
# 'preamble': '',
235235

236-
# Latex figure (float) alignment
237-
#'figure_align': 'htbp',
236+
# Latex figure (float) alignment
237+
# 'figure_align': 'htbp',
238238
}
239239

240240
# Grouping the document tree into LaTeX files. List of tuples
@@ -247,23 +247,23 @@
247247

248248
# The name of an image file (relative to this directory) to place at the top of
249249
# the title page.
250-
#latex_logo = None
250+
# latex_logo = None
251251

252252
# For "manual" documents, if this is true, then toplevel headings are parts,
253253
# not chapters.
254-
#latex_use_parts = False
254+
# latex_use_parts = False
255255

256256
# If true, show page references after internal links.
257-
#latex_show_pagerefs = False
257+
# latex_show_pagerefs = False
258258

259259
# If true, show URL addresses after external links.
260-
#latex_show_urls = False
260+
# latex_show_urls = False
261261

262262
# Documents to append as an appendix to all manuals.
263-
#latex_appendices = []
263+
# latex_appendices = []
264264

265265
# If false, no module index is generated.
266-
#latex_domain_indices = True
266+
# latex_domain_indices = True
267267

268268

269269
# -- Options for manual page output ---------------------------------------
@@ -276,7 +276,7 @@
276276
]
277277

278278
# If true, show URL addresses after external links.
279-
#man_show_urls = False
279+
# man_show_urls = False
280280

281281

282282
# -- Options for Texinfo output -------------------------------------------
@@ -291,16 +291,17 @@
291291
]
292292

293293
# Documents to append as an appendix to all manuals.
294-
#texinfo_appendices = []
294+
# texinfo_appendices = []
295295

296296
# If false, no module index is generated.
297-
#texinfo_domain_indices = True
297+
# texinfo_domain_indices = True
298298

299299
# How to display URL addresses: 'footnote', 'no', or 'inline'.
300-
#texinfo_show_urls = 'footnote'
300+
# texinfo_show_urls = 'footnote'
301301

302302
# If true, do not generate a @detailmenu in the "Top" node's menu.
303-
#texinfo_no_detailmenu = False
303+
# texinfo_no_detailmenu = False
304+
304305

305306
def setup(app):
306307
app.add_css_file('theme_overrides.css')

setup.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@
88
long_description = f.read()
99

1010
setup(
11-
name = 'can-isotp',
12-
packages = find_packages(exclude=['test']),
13-
version = '1.8',
14-
description = 'Module enabling the IsoTP protocol defined by ISO-15765',
15-
long_description=long_description,
16-
author = 'Pier-Yves Lessard',
17-
author_email = '[email protected]',
18-
license='MIT',
19-
url = 'https://github.com/pylessard/python-can-isotp',
20-
download_url = 'https://github.com/pylessard/python-can-isotp/archive/v1.8.tar.gz',
21-
keywords = ['isotp', 'can', 'iso-15765', '15765', 'iso15765'],
22-
python_requires='>=3',
23-
classifiers = [
11+
name='can-isotp',
12+
packages=find_packages(where='.', exclude=['test', 'test.*'], include=['isotp', "isotp.*"]),
13+
version='1.9',
14+
description='Module enabling the IsoTP protocol defined by ISO-15765',
15+
long_description=long_description,
16+
author='Pier-Yves Lessard',
17+
author_email='[email protected]',
18+
license='MIT',
19+
url='https://github.com/pylessard/python-can-isotp',
20+
download_url='https://github.com/pylessard/python-can-isotp/archive/v1.9.tar.gz',
21+
keywords=['isotp', 'can', 'iso-15765', '15765', 'iso15765'],
22+
python_requires='>=3.7',
23+
classifiers=[
2424
"Programming Language :: Python",
2525
"Programming Language :: Python :: 3",
2626
"Development Status :: 4 - Beta",
2727
"Operating System :: POSIX :: Linux",
2828
"Intended Audience :: Developers",
2929
"License :: OSI Approved :: MIT License",
3030
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
31-
],
31+
],
3232
)

0 commit comments

Comments
 (0)