mirror of
https://gitlab.com/MisterBiggs/bdfparse.git
synced 2025-06-16 14:36:40 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
0e82fef264 | |||
5eefdb3ce1 | |||
4eeaecf193 |
@ -10,6 +10,9 @@ 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",
|
||||||
@ -30,7 +33,7 @@ class Font:
|
|||||||
")": "parenright",
|
")": "parenright",
|
||||||
",": "comma",
|
",": "comma",
|
||||||
".": "period",
|
".": "period",
|
||||||
"/": "lslash",
|
"/": "slash",
|
||||||
"?": "question",
|
"?": "question",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
4
setup.py
4
setup.py
@ -10,13 +10,13 @@ with open("README.md", "r") as fh:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="bdfparse",
|
name="bdfparse",
|
||||||
version="2019.7",
|
version="2019.8",
|
||||||
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/bdf-to-numpy",
|
url="https://gitlab.com/MisterBiggs/bdfparse",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3.7",
|
"Programming Language :: Python :: 3.7",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user