Metadata-Version: 2.4
Name: uuts
Version: 1.0.9
Dynamic: Author
Dynamic: Author-email
Dynamic: Classifier
Dynamic: Keywords
Dynamic: License
Dynamic: License-Expression
Dynamic: Requires-Dist
Dynamic: Provides-Extra
Summary: Add your description here
Requires-Python: >=3.13
Requires-Dist: fetchx>=0.0.44
Requires-Dist: setuptools>=80.9.0
Description-Content-Type: text/markdown

# uuts
the library to generate documentation for time series metamodel. 

## Installation Windows (one-liner)
1. Create an emtpy directory and name it for example "uuts"
2. Press the following two keys on the keyboard WIN + R, type "cmd" and navigate to the new directory using "cd C:\...\uuts\"
3. Type the following command and execute it: 
```bash
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" && set Path=C:\Users\User\.local\bin;%Path% && uv init && uv add uuts && uv run python -c "import uuts.init"
```
## Installation Windows (using init.bat)    
1. Create an emtpy directory and name it for example "uuts"
2. Create an empty file in the newly created "uuts" directory. Name it "win_01_init.bat".
3. Copy the following text into the file "win_01_init.bat":
```bash
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
set Path=C:\Users\User\.local\bin;%Path% 
uv init 
uv add uuts
uv lock --upgrade
uv run python -c "import uuts.init"
pause
```
4. Execute a file by double clicking on it

## Installation Linux, macOS
1. Create an emtpy directory and name it for example "uuts"
2. Open newly created directory
3. Run the following commands:
```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "or use wget if there is a problem with curl"
wget -qO- https://astral.sh/uv/install.sh | sh
uv init 
uv add uuts
uv run python -c "import uuts.init"
```

## How to use the uuts
Create a new file in the "uuts" directory. Name it "run.bat" or "run.sh". Copy the following text into the file "run.bat" or "run.sh":
```bash
uv run main.py --action "generateDocumentation" --input "C:\git\cams\Toolkit\metamodel\deploy\etrm" --output "./" --language "cs"
```
Run the file by double clicking on it or by running it in the terminal.
