Metadata-Version: 2.1
Name: eis1600
Version: 0.2.2
Summary: EIS1600 project tools and utilities
Home-page: https://github.com/EIS1600/eis1600-pkg
Author: Lisa Mischer
Author-email: mischer.lisa@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# EIS1600 Tools

## Installation
```
$ pip install eis1600
```

## Usage

### Covert mARkdown to EIS1600 files

Execute inside the directory where the respective .mARkdown file is stored.
The .EIS1600 file will be created next to the .mARkdown file

```
$ cd <uri>
$ convert_mARkdown_to_Eis1600.py <uri>.EIS1600
```

#### Batch processing of mARkdown files

To process all mARkdown files in a directory, give an input AND an output directory.
Results are stored to the output directory.

```
$ convert_mARkdown_to_EIS1600.py <input_dir> <output_dir>
```

### Disassembling

Execute inside the directory where the respective .EIS1600 file is stored.
The MIU directory will be created inside the current directory

```
$ cd <uri>
$ disassemble_into_miu_files.py <uri>.EIS1600
```

### Reassembling

Execute inside the directory where the respective .EIS1600 file is stored.
The MIU directory has to be under the current directory

```
$ cd <uri>
$ reassemble_from_miu_files.py <uri>.EIS1600
```


