1
0
mirror of https://gitlab.com/MisterBiggs/bdfparse.git synced 2025-07-23 06:41:33 +00:00

preparing code for official release

This commit is contained in:
2019-07-15 23:00:40 -07:00
parent 5ada358204
commit b9fd445da7
7 changed files with 83 additions and 40 deletions

26
setup.py Normal file
View File

@@ -0,0 +1,26 @@
# Copyright (c) 2019 albig
#
# 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="bdf-to-numpy",
version="2019.1",
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/bdf-to-numpy",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7.3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)