Remove docutils dep in tox dist testenv
[mudpy.git] / setup.cfg
1 # Copyright (c) 2016-2018 Jeremy Stanley <fungi@yuggoth.org>. Permission
2 # to use, copy, modify, and distribute this software is granted under
3 # terms 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     Browse Source = https://mudpy.org/code/mudpy/
16     Bug Reporting = https://mudpy.org/bugs/mudpy/
17     Documentation = https://mudpy.org/docs/mudpy/
18     Git Clone URL = https://mudpy.org/code/mudpy/
19     License Texts = https://mudpy.org/license/
20     Release Files = https://mudpy.org/dist/mudpy/
21 keywords = mud game telnet
22 license = ISC License (ISCL)
23 license_file = LICENSE
24 platform = POSIX/Unix
25 classifier =
26     License :: OSI Approved :: ISC License (ISCL)
27     Operating System :: POSIX
28     Operating System :: Unix
29     Programming Language :: Python
30     Programming Language :: Python :: 3
31     Programming Language :: Python :: 3.4
32     Programming Language :: Python :: 3.5
33     Programming Language :: Python :: 3.6
34     Programming Language :: Python :: 3.7
35     Programming Language :: Python :: 3 :: Only
36     Topic :: Communications
37     Topic :: Communications :: BBS
38     Topic :: Communications :: Chat
39     Topic :: Games/Entertainment
40     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
41     Topic :: Games/Entertainment :: Role-Playing
42     Topic :: Internet
43
44 [files]
45 packages =
46     mudpy
47
48 [entry_points]
49 console_scripts =
50     mudpy = mudpy.daemon:main
51     mudpy_selftest = mudpy.tests.selftest:main