Browse Source

Add a classifier. Add a comment.

master
poikilos 2 years ago
parent
commit
9e95e060ec
  1. 1
      buildenliven.py
  2. 5
      setup.py

1
buildenliven.py

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

5
setup.py

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

Loading…
Cancel
Save