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