Metadata-Version: 2.4
Name: pymsch
Version: 0.0.13
Summary: A package for creating mindustry schematic files
Project-URL: Source, https://github.com/SkyeTheFoxyFox/pymsch
Author: skyethefoxyfox
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: pyperclip
Description-Content-Type: text/markdown

 # pymsch

 a package for generating mindustry schematic files with python code

 here's a basic example:
 ```py
 from pymsch import Schematic, Block, Content

 schem = Schematic()
 schem.set_tag('name', 'Example Schematic')
 schem.set_tag('description', 'A description for the schematic')

 schem.add_block(Block(Content.COPPER_WALL, 0, 0, None, 0))

 schem.write_clipboard()
 ```
 This makes a schematic with a single copper wall, and outputs it to your clipboard to import into the game

 