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.charNames = {
" ": "space",
"-": "minus",
"+": "plus",
"0": "zero",
"1": "one",
"2": "two",
"3": "three",
@ -33,7 +30,7 @@ class Font:
")": "parenright",
",": "comma",
".": "period",
"/": "slash",
"/": "lslash",
"?": "question",
}

View File

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