deccc0629f995cc1b2c13d92a8d3dead7a1912fe
[mudpy.git] / setup.cfg
1 # Copyright (c) 2016-2022 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 long_description = file: README
9 long_description_content_type = text/x-rst; charset=UTF-8
10 author = Jeremy Stanley
11 author_email = fungi@yuggoth.org
12 url = https://mudpy.org/
13 project_urls =
14     Big ChangeLog = https://mudpy.org/clog/mudpy/
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 platforms = POSIX/Unix
24 classifiers =
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.7
31     Programming Language :: Python :: 3.8
32     Programming Language :: Python :: 3.9
33     Programming Language :: Python :: 3.10
34     Programming Language :: Python :: 3.11
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 [options]
45 install_requires =
46     passlib>=1.7
47     pyyaml
48 python_requires = >=3.7
49
50 [files]
51 packages =
52     mudpy
53
54 [entry_points]
55 console_scripts =
56     mudpy = mudpy.daemon:main
57     mudpy_selftest = mudpy.tests.selftest:main