Skip to content

Commit

Permalink
🎨 Format Python code with psf/black
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcrawford45 authored Nov 24, 2021
1 parent c9d7233 commit 72ee11f
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 34 deletions.
63 changes: 34 additions & 29 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

# -- Project information -----------------------------------------------------

project = u'card_board'
copyright = u'2021, Jared Crawford <[email protected]>'
author = u'Jared Crawford <[email protected]>'
project = u"card_board"
copyright = u"2021, Jared Crawford <[email protected]>"
author = u"Jared Crawford <[email protected]>"

# The short X.Y version
version = u''
version = u""
# The full version, including alpha/beta/rc tags
release = u''
release = u""


# -- General configuration ---------------------------------------------------
Expand All @@ -39,23 +39,23 @@
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.coverage',
'sphinx.ext.viewcode',
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.coverage",
"sphinx.ext.viewcode",
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
#
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
source_suffix = ".rst"

# The master toctree document.
master_doc = 'index'
master_doc = "index"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand All @@ -67,7 +67,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store']
exclude_patterns = [u"_build", "Thumbs.db", ".DS_Store"]

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None
Expand All @@ -78,7 +78,7 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'alabaster'
html_theme = "alabaster"

# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
Expand All @@ -89,7 +89,7 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand All @@ -105,7 +105,7 @@
# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'card_boarddoc'
htmlhelp_basename = "card_boarddoc"


# -- Options for LaTeX output ------------------------------------------------
Expand All @@ -114,15 +114,12 @@
# The paper size ('letterpaper' or 'a4paper').
#
# 'papersize': 'letterpaper',

# The font size ('10pt', '11pt' or '12pt').
#
# 'pointsize': '10pt',

# Additional stuff for the LaTeX preamble.
#
# 'preamble': '',

# Latex figure (float) alignment
#
# 'figure_align': 'htbp',
Expand All @@ -132,19 +129,21 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'card_board.tex', u'card_board Documentation',
u'Jared Crawford \\textless{}[email protected]\\textgreater{}', 'manual'),
(
master_doc,
"card_board.tex",
u"card_board Documentation",
u"Jared Crawford \\textless{}[email protected]\\textgreater{}",
"manual",
),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'card_board', u'card_board Documentation',
[author], 1)
]
man_pages = [(master_doc, "card_board", u"card_board Documentation", [author], 1)]


# -- Options for Texinfo output ----------------------------------------------
Expand All @@ -153,9 +152,15 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'card_board', u'card_board Documentation',
author, 'card_board', 'One line description of project.',
'Miscellaneous'),
(
master_doc,
"card_board",
u"card_board Documentation",
author,
"card_board",
"One line description of project.",
"Miscellaneous",
),
]


Expand All @@ -174,7 +179,7 @@
# epub_uid = ''

# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']
epub_exclude_files = ["search.html"]


# -- Extension configuration -------------------------------------------------
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from setuptools import setup

setup()
setup()
8 changes: 5 additions & 3 deletions src/card_board/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import cv2
import pytesseract


def card_from_image(path: str) -> str:
custom_config = r'--oem 3 --psm 6'
return pytesseract.image_to_string(path, config=custom_config)
custom_config = r"--oem 3 --psm 6"
return pytesseract.image_to_string(path, config=custom_config)


all = ('card_from_image')
all = "card_from_image"
5 changes: 4 additions & 1 deletion tests/test_cardboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@

import pkg_resources


def test_card_from_image():
assert 'DARK MAGICIAN' in card_board.card_from_image(pkg_resources.resource_filename(__name__, 'data/dark_magician_header.jpg'))
assert "DARK MAGICIAN" in card_board.card_from_image(
pkg_resources.resource_filename(__name__, "data/dark_magician_header.jpg")
)

0 comments on commit 72ee11f

Please sign in to comment.