18b055ad0740217bc6e549d04a274898e2c8817f
[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 keywords = mud game telnet
21 license = ISC License (ISCL)
22 license_file = LICENSE
23 classifier =
24     License :: OSI Approved :: ISC License (ISCL)
25     Operating System :: POSIX
26     Operating System :: Unix
27     Programming Language :: Python
28     Programming Language :: Python :: 3
29     Programming Language :: Python :: 3.3
30     Programming Language :: Python :: 3.4
31     Programming Language :: Python :: 3.5
32     Programming Language :: Python :: 3.6
33     Programming Language :: Python :: 3 :: Only
34     Topic :: Communications
35     Topic :: Communications :: BBS
36     Topic :: Communications :: Chat
37     Topic :: Games/Entertainment
38     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
39     Topic :: Games/Entertainment :: Role-Playing
40     Topic :: Internet
41
42 [files]
43 packages =
44     mudpy
45
46 [entry_points]
47 console_scripts =
48     mudpy = mudpy.daemon:main
49     mudpy_selftest = mudpy.tests.selftest:main