mirror of
https://github.com/NousResearch/atropos.git
synced 2026-04-22 16:48:57 +00:00
- Introduced `ATROPOS_INTEGRATION.md` for detailed instructions on using DynastAI with Atropos. - Added `INSTALL_AND_RUN.md` to guide users through installation and running the game. - Created `run_dynastai.py` for a simplified testing experience without full Atropos setup. - Implemented `setup.py` to manage dependencies and ensure compatibility. - Updated `requirements.txt` to include additional dependencies and version constraints. - Enhanced `README.md` with new sections on installation, running the game, and integration with Atropos. - Added installation verification script `verify_install.py` to check for required packages. - Updated game logic to support local card generation and improved API integration. - Enhanced web interface with new features for user interaction and game metrics display.
23 lines
731 B
Python
Executable file
23 lines
731 B
Python
Executable file
#!/usr/bin/env python3
|
|
"""
|
|
DynastAI Environment - Direct entry point for Atropos integration
|
|
|
|
This script provides a direct entry point for running the DynastAI environment
|
|
with the Atropos framework. It serves as a simple wrapper around the dynastai_environment.py
|
|
script in the parent directory.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import asyncio
|
|
|
|
# Add parent directory to path to find dynastai_environment.py
|
|
parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
sys.path.insert(0, parent_dir)
|
|
|
|
# Import the main environment module
|
|
import environments.dynastai_environment as dynastai_environment
|
|
|
|
if __name__ == "__main__":
|
|
# Pass all arguments to the main entry point
|
|
sys.exit(dynastai_environment.__file__)
|