aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 9192ddad3e6333d84aa08fed467106343edce221 (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
[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
	commonmark~=0.9.1
setup_requires =
	setuptools