Metadata-Version: 2.1
Name: orruns
Version: 0.1.1
Summary: Experiment Management Tool for Operations Research and Optimization
Home-page: https://github.com/yourusername/orruns
Author: ffxdd
Author-email: your.email@example.com
License: GNU Affero General Public License v3
Project-URL: Documentation, https://orruns.readthedocs.io/
Project-URL: Bug Reports, https://github.com/yourusername/orruns/issues
Project-URL: Source Code, https://github.com/yourusername/orruns
Project-URL: Changelog, https://github.com/yourusername/orruns/blob/main/CHANGELOG.md
Keywords: operations research,optimization,experiment tracking,scientific computing,mathematical optimization,research tools,experiment management,reproducible research
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Education
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Environment :: Console
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=7.0
Requires-Dist: cloudpickle>=1.6.0
Requires-Dist: matplotlib>=3.3.0
Requires-Dist: numpy>=1.19.0
Requires-Dist: pandas>=1.0.0
Requires-Dist: tabulate>=0.8.0
Requires-Dist: dash
Requires-Dist: dash-bootstrap-components
Requires-Dist: plotly
Provides-Extra: dev
Requires-Dist: pytest>=6.0.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: isort>=5.0.0; extra == "dev"
Requires-Dist: mypy>=0.900; extra == "dev"
Requires-Dist: pylint>=2.0.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=4.0.0; extra == "docs"
Requires-Dist: sphinx-rtd-theme>=1.0.0; extra == "docs"

# ORruns: Redefining Operations Research Experiment Management 🚀

<p align="center">
  <img src="orruns/assets/logo.png" alt="ORruns Logo" width="200"/>
  <br>
  <em>Next-generation Experiment Management Platform for Operations Research</em>
</p>

> 🌱 ORruns is in its vibrant early stages. As a newly launched open-source project, we welcome every Operations Research researcher to participate and contribute. Your ideas and code will help this project grow better. Let's build the future of the Operations Research community together!

<p align="center">
  <a href="#quick-start">Quick Start</a> •
  <a href="#why-orruns">Why ORruns</a> •
  <a href="#community">Community</a> •
  <a href="#features">Features</a>
</p>

---

## Why ORruns?

Have you encountered these challenges in Operations Research?

- 📊 Experimental data scattered everywhere, difficult to manage and track
- 🔄 Tedious experiment repetition and chaotic parameter management
- 📈 Repetitive code writing for visualization
- 🤝 Lack of unified experiment management and sharing platform

**ORruns** is born to solve these problems! We are committed to providing Operations Research researchers with a modern, intuitive, and powerful experiment management tool.

## ✨ Features

### Elegant Experiment Tracking
```python
from orruns import ExperimentTracker

with ExperimentTracker("nsga2_optimization") as tracker:
    tracker.log_params({
        "population_size": 100,
        "generations": 1000
    })
    
    # Your optimization code
    result = optimize()
    
    tracker.log_metrics({
        "pareto_front_size": len(result.pareto_front),
        "hypervolume": result.hypervolume
    })
```

### Powerful Parallel Experiment Support
```python
@repeat_experiment(times=5, parallel=True)
def optimize_with_different_seeds(tracker):
    # Automatic parallelization, result collection and visualization
    return your_optimization_algorithm()
```

### Intuitive Visualization Interface
<p align="center">
  <img src="IMG\PixPin_2024-11-14_00-03-57.png" alt="Dashboard Screenshot" width="600"/>
</p>

## 🚀 Making Operations Research Better

We believe that the Operations Research community deserves modern and open tooling ecosystems like those in the machine learning community. ORruns is not just a tool, but a vision - let's together:

- 🌟 Build an open, active Operations Research community
- 🔧 Create better experiment management tools
- 📚 Share knowledge and best practices
- 🤝 Promote academic exchange and collaboration

## 💡 Join the Journey

> "The future of Operations Research needs our collective effort. Let's build an open-source community for Operations Research researchers!"

### 🌱 Growing Together from Zero

ORruns is still a young project, which means:
- You can participate in core feature design and development
- Your ideas and suggestions are more likely to be adopted
- You can witness and influence every step of the project's growth
- You'll be among the earliest contributors

### 💪 How to Contribute

Whether you are:
- 🎓 A student new to Operations Research
- 👨‍🔬 An experienced researcher
- 👩‍💻 A passionate developer
- 📚 An enthusiastic documentation writer

We welcome your participation:

- 🎯 **Use and Feedback**: Every suggestion drives ORruns to become better
- 🛠️ **Development**: Whether fixing bugs or adding features, all contributions are welcome
- 📝 **Documentation**: Help others understand and use ORruns
- 🌍 **Promotion**: Spread the word to more Operations Research researchers

## 🎯 Roadmap

We're planning exciting features to build a more comprehensive Operations Research experiment ecosystem:

### Coming Soon
- 📊 **Enhanced Analytics** (v0.2.0)
  - Dynamic Pareto Front Visualization
  - Advanced Statistical Analysis Tools
  - Experiment Comparison System

- 🛠️ **Improved User Experience** (v0.3.0)
  - Experiment Backup and Recovery
  - Publication-Ready Results Export
  - Powerful Command Line Tools

> Check out the complete [roadmap document](ROADMAP.md) for more details and future plans!

## 🚀 Quick Start

```bash
pip install orruns
```

Check out our [Quick Start Guide](docs/quickstart.md) to begin your first experiment!

## 📄 License

ORruns is licensed under the GNU General Public License v3.0 (GPL-3.0) with additional non-commercial terms. This means: if you need to use this software for commercial purposes, please contact the project maintainers for a commercial license.
See the full license text in the [LICENSE](LICENSE) file.

## 🌟 Join the Community

- 💬 [Join Discussions](https://github.com/lengff123/ORruns/discussions)
- 🐛 [Report Issues](https://github.com/lengff123/ORruns/issues)
- 📫 [Mailing List](mailto:your-email@example.com)

---

<p align="center">
  <em>By Operations Researchers, For Operations Researchers</em>
  <br>
  <br>
  If you like this project, please give us a ⭐️
</p>
