X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=setup.cfg;h=9a70b8ac531233dcee5b03856aa15ce3c8f35363;hp=35cd6bca878fd6bf50f76c166899b7ddd3a933ea;hb=3f200ce7ae627a036203c4d65502d96fe941fbb7;hpb=e2d7115d4ec4ee451c7f8e86a4f7277a940d9036 diff --git a/setup.cfg b/setup.cfg index 35cd6bc..9a70b8a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,21 +1,40 @@ +# Copyright (c) 2016-2021 mudpy authors. Permission to use, copy, +# modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. + [metadata] name = mudpy summary = The mudpy MUD server engine. -description-file = - README.rst +long_description = file: README +long_description_content_type = text/x-rst; charset=UTF-8 author = Jeremy Stanley -author-email = fungi@yuggoth.org -home-page = http://mudpy.org/ -classifier = +author_email = fungi@yuggoth.org +url = https://mudpy.org/ +project_urls = + Big ChangeLog = https://mudpy.org/clog/mudpy/ + Browse Source = https://mudpy.org/code/mudpy/ + Bug Reporting = https://mudpy.org/bugs/mudpy/ + Documentation = https://mudpy.org/docs/mudpy/ + Git Clone URL = https://mudpy.org/code/mudpy/ + License Texts = https://mudpy.org/license/ + Release Files = https://mudpy.org/dist/mudpy/ +keywords = mud game telnet +license = ISC License (ISCL) +license_files = + AUTHORS + LICENSE +platforms = POSIX/Unix +classifiers = License :: OSI Approved :: ISC License (ISCL) Operating System :: POSIX Operating System :: Unix Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.3 - Programming Language :: Python :: 3.4 - Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Programming Language :: Python :: 3 :: Only Topic :: Communications Topic :: Communications :: BBS @@ -25,6 +44,9 @@ classifier = Topic :: Games/Entertainment :: Role-Playing Topic :: Internet +[options] +python_requires = >=3.6 + [files] packages = mudpy @@ -32,3 +54,4 @@ packages = [entry_points] console_scripts = mudpy = mudpy.daemon:main + mudpy_selftest = mudpy.tests.selftest:main