Metadata-Version: 2.4
Name: bsm-frontend
Version: 1.0.0
Summary: The React frontend for Bedrock Server Manager, packaged as a Python library.
Author-email: DMedina559 <dmedina559-github@outlook.com>
License: MIT License
        
        Copyright (c) 2025 dmedina559
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Repository, https://github.com/dmedina559/bsm-frontend.git
Project-URL: Bug Tracker, https://github.com/DMedina559/bsm-frontend/issues
Project-URL: Changelog, https://bedrock-server-manager.readthedocs.io/en/latest/changelog.html
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest<9.1,>=8.4.0; extra == "dev"
Requires-Dist: black<26.2,>=25.1.0; extra == "dev"
Requires-Dist: flake8<7.4,>=7.3.0; extra == "dev"
Requires-Dist: isort<8.1,>=5.13.0; extra == "dev"
Requires-Dist: mypy<1.20,>=1.10.0; extra == "dev"
Requires-Dist: pre-commit<5.0,>=4.5.0; extra == "dev"
Dynamic: license-file

# Bedrock Server Manager UI

This is the React frontend for Bedrock Server Manager, packaged as a Python library.

## Installation

```bash
pip install bsm-frontend
```

## Usage

```python
from bsm_frontend import get_static_dir

static_files_path = get_static_dir()
print(f"Static files are located at: {static_files_path}")
```
