Metadata-Version: 2.1
Name: aieda
Version: 0.1.0
Summary: AI-Enhanced Electronic Design Automation Library with iEDA Integration
Home-page: https://github.com/OSCC-Project/AiEDA
Author: yhqiu
Author-email: qiuyihang23@mails.ucas.ac.cn
Keywords: eda,ieda,vlsi,synthesis,place-and-route,ai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
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
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.20.0
Requires-Dist: pandas>=1.3.0
Requires-Dist: pyyaml>=5.4.0
Requires-Dist: click>=8.0.0
Requires-Dist: tqdm>=4.60.0

# AiEDA

## 介绍
面向python编程的EDA平台，集成iEDA等开源EDA工具的各类接口作为AiEDA开发引擎

### 修改iEDA third_party/iEDA/CMakelist.txt 以下参数
```Shell
option(BUILD_STATIC_LIB "If ON, build static lib." OFF)
option(BUILD_PYTHON "If ON, build python interface." ON)
```
### 编译iEDA，并install
```Shell
cd third_party/iEDA
mkdir build
cd build
cmake ..
make -j32 ieda_py
```
