Update copyright dates for files changed in 2018
[mudpy.git] / setup.cfg
1 # Copyright (c) 2016-2018 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     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_files =
24     AUTHORS
25     LICENSE
26 platform = POSIX/Unix
27 classifier =
28     License :: OSI Approved :: ISC License (ISCL)
29     Operating System :: POSIX
30     Operating System :: Unix
31     Programming Language :: Python
32     Programming Language :: Python :: 3
33     Programming Language :: Python :: 3.4
34     Programming Language :: Python :: 3.5
35     Programming Language :: Python :: 3.6
36     Programming Language :: Python :: 3.7
37     Programming Language :: Python :: 3 :: Only
38     Topic :: Communications
39     Topic :: Communications :: BBS
40     Topic :: Communications :: Chat
41     Topic :: Games/Entertainment
42     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
43     Topic :: Games/Entertainment :: Role-Playing
44     Topic :: Internet
45
46 [files]
47 packages =
48     mudpy
49
50 [entry_points]
51 console_scripts =
52     mudpy = mudpy.daemon:main
53     mudpy_selftest = mudpy.tests.selftest:main