Adding somewhat working setup script
This commit is contained in:
parent
188671b7e1
commit
a434252657
26
setup.py
Normal file
26
setup.py
Normal 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',
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user