mirror of
https://gitlab.com/MisterBiggs/bdfparse.git
synced 2025-06-15 14:06:39 +00:00
27 lines
766 B
Python
27 lines
766 B
Python
# Copyright (c) 2019 Anson Biggs
|
|
#
|
|
# This software is released under the MIT License.
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
import setuptools
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setuptools.setup(
|
|
name="bdfparse",
|
|
version="2019.8",
|
|
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",
|
|
packages=setuptools.find_packages(),
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3.7",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
)
|