diff options
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | setup.py | 11 |
2 files changed, 7 insertions, 6 deletions
@@ -79,7 +79,7 @@ This file in in status directory and is named as `players`. If server is running it contains online players. Player name per line. If server isn't running, it content don't have to be valid. -### Message of the day +#### Message of the day This prints to players various short messages in given interval. Message is from file passed as --mod-file and it's randomly selected line. This file is read on wrapper start, so if you edit it while it's running, no change will happen unless @@ -1,8 +1,9 @@ #!/usr/bin/env python3 -from os import path +import os from setuptools import setup -readme_file = path.join(path.abspath(path.dirname(__file__)), 'README.md') +readme_file = os.path.join(os.path.abspath(os.path.dirname(__file__)), + 'README.md') long_description = "" try: import pypandoc @@ -10,10 +11,9 @@ try: except (IOError, ImportError): print("Pandoc not found. Long_description conversion failure.") - setup( name='mcserver-wrapper', - version='0.3.7', + version='0.4', description="Minecraft server wrapper", long_description=long_description, url="https://github.com/Cynerd/mcserver-wrapper", @@ -24,9 +24,10 @@ setup( classifiers=[ 'Development Status :: 3 - Alpha', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], keywords='Minecraft wrapper server', |