1
0
mirror of https://gitlab.com/MisterBiggs/bdfparse.git synced 2025-06-17 06:56:40 +00:00

Compare commits

..

No commits in common. "master" and "2019.7" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View File

@ -10,9 +10,6 @@ class Font:
self.shape = (self.rows, self.cols) self.shape = (self.rows, self.cols)
self.charNames = { self.charNames = {
" ": "space", " ": "space",
"-": "minus",
"+": "plus",
"0": "zero",
"1": "one", "1": "one",
"2": "two", "2": "two",
"3": "three", "3": "three",
@ -33,7 +30,7 @@ class Font:
")": "parenright", ")": "parenright",
",": "comma", ",": "comma",
".": "period", ".": "period",
"/": "slash", "/": "lslash",
"?": "question", "?": "question",
} }

View File

@ -10,13 +10,13 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="bdfparse", name="bdfparse",
version="2019.8", version="2019.7",
author="Anson Biggs", author="Anson Biggs",
author_email="anson@ansonbiggs.com", author_email="anson@ansonbiggs.com",
description="A package for reading .bdf files into NumPy arrays.", description="A package for reading .bdf files into NumPy arrays.",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
url="https://gitlab.com/MisterBiggs/bdfparse", url="https://gitlab.com/MisterBiggs/bdf-to-numpy",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
classifiers=[ classifiers=[
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",