aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 65fe7a14491ab4f4ea73fa9192110f4a31b84aae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[metadata]
name = Muppet Strings
version = attr: muppet.VERSION
description = Like puppet strings, but for multiple modules.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.hornquist.se/muppet-strings
author = Hugo Hörnquist
author_email = hugo@lysator.liu.se
keywords =
classifiers =
	Programming Language :: Python :: 3
	Development Status :: 3 - Alpha
	Environment :: Console
	Environment :: Web Environment
	Indended Audience :: System Administrators
	License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
license = AGPLv3+
license_files = LICENSE

[options.entry_points]
console_scripts =
	muppet = muppet

[options]
py_modules = muppet
packages = muppet

python_requires = >= 3.10
install_requires =
	jinja2~=3.1.2
	markdown-it-py~=2.2
	mdit_py_plugins~=0.3
setup_requires =
	setuptools