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:
26
setup.py
Normal file
26
setup.py
Normal 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",
|
||||
],
|
||||
)
|
Reference in New Issue
Block a user