Add a classifier. Add a comment.

master
poikilos 2022-08-05 00:34:33 -04:00
parent e170a2b123
commit 9e95e060ec
2 changed files with 5 additions and 1 deletions

View File

@ -184,6 +184,7 @@ def main():
''.format(gameConfName, tryGameDir)
)
config = configparser.ConfigParser()
# ^ or: from pycodetool.parsing import ConfigParser
with open(gameConfPath, 'r') as ins:
config.read_string('[top]\n' + ins.read())
# ^ insert a section since ConfigParser requires sections.

View File

@ -28,7 +28,9 @@ if os.path.isfile("requirements.txt"):
continue
install_requires.append(line)
description = '''Manage Minetest using Python.'''
description = (
"Manage Minetest using Python."
)
long_description = description
if os.path.isfile("readme.md"):
with open("readme.md", "r") as fh:
@ -47,6 +49,7 @@ setuptools.setup(
' GNU General Public License v2 or later (GPLv2+)'),
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Version Control',
'Topic :: System :: Installation/Setup',
],
keywords=('minetest repo management commit data analyzer'
' meld merge compare files diff'),