From 2218dc3e6adaedeb53fd166f4fb8b6f5b3ede7bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 23 Oct 2016 13:07:48 +0200 Subject: Update setup.py small fix README.md and 0.4 release --- README.md | 2 +- setup.py | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 52ea73e..bcab451 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/setup.py b/setup.py index ecf4cba..217d01d 100755 --- a/setup.py +++ b/setup.py @@ -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', -- cgit v1.2.3