diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e8c588b --- /dev/null +++ b/setup.py @@ -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 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', +)