Update copyright year in built documentation
[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 license_files =
24     AUTHORS
25     LICENSE
26 platforms = POSIX/Unix
27 classifiers =
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.6
34     Programming Language :: Python :: 3.7
35     Programming Language :: Python :: 3.8
36     Programming Language :: Python :: 3.9
37     Programming Language :: Python :: 3.10
38     Programming Language :: Python :: 3 :: Only
39     Topic :: Communications
40     Topic :: Communications :: BBS
41     Topic :: Communications :: Chat
42     Topic :: Games/Entertainment
43     Topic :: Games/Entertainment :: Multi-User Dungeons (MUD)
44     Topic :: Games/Entertainment :: Role-Playing
45     Topic :: Internet
46
47 [options]
48 install_requires =
49     passlib>=1.7
50     pyyaml
51 python_requires = >=3.6
52
53 [files]
54 packages =
55     mudpy
56
57 [entry_points]
58 console_scripts =
59     mudpy = mudpy.daemon:main
60     mudpy_selftest = mudpy.tests.selftest:main