mirror of
https://github.com/RGBCube/DML
synced 2025-07-28 08:07:44 +00:00
Initial Commit
This commit is contained in:
parent
66739939c2
commit
1e815a2dc0
9 changed files with 243 additions and 1 deletions
16
dml/__init__.py
Normal file
16
dml/__init__.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
Dotted Markup Language
|
||||
|
||||
Translate text to and from DML with ease.
|
||||
"""
|
||||
|
||||
__title__ = "DML"
|
||||
__author__ = "RGBCube"
|
||||
__license__ = "MIT"
|
||||
__copyright__ = "Copyright (c) 2022-present RGBCube"
|
||||
__version__ = "1.0.0"
|
||||
|
||||
from .encoder import *
|
||||
from .errors import *
|
||||
from .fileutils import *
|
||||
from .run import *
|
Loading…
Add table
Add a link
Reference in a new issue