Metadata-Version: 2.1
Name: onsite-unstructured-lp
Version: 0.1.3
Summary: A small example package
Home-page: https://github.com/pypa/sampleproject
Author: kaiwen
Author-email: xhh666@sjtu.edu.cn
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: license.txt
Requires-Dist: pyautogui
Requires-Dist: Django (>=1.11)

# onsite-unstructured-lp

一个包含仿真模型的Python包，用于无结构环境下的自动驾驶仿真。

## 安装

```
pip install onsite-unstructured-lp
```

## 兼容性

本包已添加兼容层，支持从旧版包名导入：

```python
# 旧版导入方式，仍然有效
import importlib
scenarioOrganizer = importlib.import_module("onsite-unstructured.dynamic_scenes.scenarioOrganizer1")

# 新版导入方式
scenarioOrganizer = importlib.import_module("onsite-unstructured-lp.dynamic_scenes.scenarioOrganizer1")
```


