-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1014 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='splashbuilder',
use_scm_version={
'write_to': 'ws_splashbuilder/_version.py',
},
setup_requires=['setuptools_scm'],
# version_format='{tag}',
# setup_requires=['setuptools-git-version'],
author="Manoel <godzil> Trapier",
author_email="[email protected]",
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', 'bin/pal2wsp'],
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',
)