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