Indicate support for Python 3.9
[mudpy.git] / setup.cfg
1 # Copyright (c) 2016-2020 mudpy authors. Permission to use, copy,
2 # modify, and distribute this software is granted under terms
3 # provided in the LICENSE file distributed with this software.
4
5 [metadata]
6 name = mudpy
7 summary = The mudpy MUD server engine.
8 description-file =
9     README
10 description-content-type = text/x-rst; charset=UTF-8
11 author = Jeremy Stanley
12 author-email = fungi@yuggoth.org
13 home-page = https://mudpy.org/
14 project_urls =
15     Big ChangeLog = https://mudpy.org/clog/mudpy/
16     Browse Source = https://mudpy.org/code/mudpy/
17     Bug Reporting = https://mudpy.org/bugs/mudpy/
18     Documentation = https://mudpy.org/docs/mudpy/
19     Git Clone URL = https://mudpy.org/code/mudpy/
20     License Texts = https://mudpy.org/license/
21     Release Files = https://mudpy.org/dist/mudpy/
22 keywords = mud game telnet
23 license = ISC License (ISCL)
24 license_files =
25     AUTHORS
26     LICENSE
27 platform = POSIX/Unix
28 classifier =
29     License :: OSI Approved :: ISC License (ISCL)
30     Operating System :: POSIX
31     Operating System :: Unix
32     Programming Language :: Python
33     Programming Language :: Python :: 3
34     Programming Language :: Python :: 3.5
35     Programming Language :: Python :: 3.6
36     Programming Language :: Python :: 3.7
37     Programming Language :: Python :: 3.8
38     Programming Language :: Python :: 3.9
39     Programming Language :: Python :: 3 :: Only
40     Topic :: Communications
41     Topic :: Communications :: BBS
42     Topic :: Communications :: Chat
43     Topic :: Games/Entertainment
44     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
45     Topic :: Games/Entertainment :: Role-Playing
46     Topic :: Internet
47
48 [files]
49 packages =
50     mudpy
51
52 [entry_points]
53 console_scripts =
54     mudpy = mudpy.daemon:main
55     mudpy_selftest = mudpy.tests.selftest:main