add extra module attrs

This commit is contained in:
Izalia Mae 2024-04-23 00:32:31 -04:00
parent c56926fc51
commit 7ef3b6b0dd

View file

@ -1,5 +1,8 @@
__software__ = "Gemi"
__version__ = "0.1.2"
__version_info__ = (0, 1, 2)
__version__ = ".".join(str(v) for v in __version_info__)
__author__ = "Zoey Mae"
__homepage__ = "https://git.barkshark.xyz/barkshark/gemi"
import mimetypes
mimetypes.add_type("text/gemini", ".gmi", strict = True)