Metadata-Version: 2.1
Name: smarterbombing
Version: 0.1.3
Summary: A tool which reads combat logs from Eve Online and displays statistics.
Home-page: https://github.com/agelito/eve-smarterbombing
License: MIT
Author: Axel Wettervik
Author-email: axel.wettervik@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: gradio (>=3.33.1,<4.0.0)
Requires-Dist: matplotlib (>=3.7.1,<4.0.0)
Requires-Dist: pandas (>=2.0.2,<3.0.0)
Requires-Dist: parse (>=1.19.0,<2.0.0)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Project-URL: Repository, https://github.com/agelito/eve-smarterbombing
Description-Content-Type: text/markdown

# Eve Smarterbombing
An application analyzing Eve Online combat logs and presenting data in a Web interface.

## Quick Start
```shell
poetry install
poetry run python -m smarterbombing
```
Open with your preferred browser:
- Open [Web UI](http://localhost:42069)
- Open [Web UI (Dark Mode)](http://127.0.0.1:42069/?__theme=dark)



### Command line options
| Flag | Valid Values | Default | Description |
|---   |---     |---      | ---         |
| `--mode` | `webui` | `webui` | Which UI mode to run  |
| `--port` | Any valid port | `42069` | Which port to host webui |



## Development (Hot reload)
```shell
poetry install

poetry shell
gradio src/smarterbombing/__main__.py
```



