Adding somewhat working setup script

This commit is contained in:
Godzil 2019-10-08 14:31:27 +01:00
parent 188671b7e1
commit a434252657

26
setup.py Normal file
View File

@ -0,0 +1,26 @@
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='splashbuilder',
version_format='{tag}.dev{commitcount}',
setup_requires=['setuptools-git-version'],
author="Manoel <godzil> Trapier",
author_email="wssplashbuilder@godzil.net",
description="A tool to build WonderSwan Color boot splash",
long_description=long_description,
long_description_content_type="text/markdown",
scripts=['bin/splashbuilder', 'bin/cel2wst', 'bin/map2wsm'],
url="https://github.com/godzil/splashbuilder",
packages=["ws_splashbuilder"],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
],
python_requires='>=3.6',
)