7e9ff8d22cb20db71423b7e7021d34bfe1cfffcd
[mudpy.git] / setup.cfg
1 # Copyright (c) 2016-2021 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.6
31     Programming Language :: Python :: 3.7
32     Programming Language :: Python :: 3.8
33     Programming Language :: Python :: 3.9
34     Programming Language :: Python :: 3.10
35     Programming Language :: Python :: 3.11
36     Programming Language :: Python :: 3 :: Only
37     Topic :: Communications
38     Topic :: Communications :: BBS
39     Topic :: Communications :: Chat
40     Topic :: Games/Entertainment
41     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
42     Topic :: Games/Entertainment :: Role-Playing
43     Topic :: Internet
44
45 [options]
46 install_requires =
47     passlib>=1.7
48     pyyaml>=6.0b1  # until https://github.com/yaml/pyyaml/pull/564 is released
49 python_requires = >=3.6
50
51 [files]
52 packages =
53     mudpy
54
55 [entry_points]
56 console_scripts =
57     mudpy = mudpy.daemon:main
58     mudpy_selftest = mudpy.tests.selftest:main