Metadata-Version: 2.4
Name: astroinsight
Version: 0.1.1
Summary: AI-powered research paper assistant with multi-agent collaboration
Home-page: https://github.com/yourusername/astroinsight
Author: AstroInsight Team
Author-email: AstroInsight Team <contact@astroinsight.com>
Maintainer-email: AstroInsight Team <contact@astroinsight.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/astroinsight
Project-URL: Documentation, https://astroinsight.readthedocs.io/
Project-URL: Repository, https://github.com/yourusername/astroinsight
Project-URL: Bug Tracker, https://github.com/yourusername/astroinsight/issues
Keywords: ai,research,paper,multi-agent,collaboration,astroinsight
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
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: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: click>=8.0.0
Requires-Dist: requests>=2.25.0
Requires-Dist: openpyxl>=3.0.0
Requires-Dist: python-dotenv>=1.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=24.10.0; extra == "dev"
Requires-Dist: flake8>=7.1.1; extra == "dev"
Requires-Dist: mypy>=1.0.0; extra == "dev"
Requires-Dist: twine>=4.0.0; extra == "dev"
Requires-Dist: wheel>=0.40.0; extra == "dev"
Provides-Extra: mcp
Requires-Dist: mcp>=1.0.0; extra == "mcp"
Requires-Dist: asyncio-mqtt>=0.16.0; extra == "mcp"
Requires-Dist: aiohttp>=3.8.0; extra == "mcp"
Requires-Dist: websockets>=11.0.0; extra == "mcp"
Provides-Extra: full
Requires-Dist: mcp>=1.0.0; extra == "full"
Requires-Dist: asyncio-mqtt>=0.16.0; extra == "full"
Requires-Dist: aiohttp>=3.8.0; extra == "full"
Requires-Dist: websockets>=11.0.0; extra == "full"
Requires-Dist: pytest>=7.0.0; extra == "full"
Requires-Dist: black>=24.10.0; extra == "full"
Requires-Dist: flake8>=7.1.1; extra == "full"
Requires-Dist: mypy>=1.0.0; extra == "full"
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# AstroInsight


## Python文件和编码规约

  - `.py` 文件编码为 `utf-8`
  

## Git 贡献提交规范

  - `feat` 增加新功能
  - `fix` 修复问题/BUG
  - `style` 代码风格相关无影响运行结果的
  - `perf` 优化/性能提升
  - `refactor` 重构
  - `revert` 撤销修改
  - `test` 测试相关
  - `docs` 文档/注释
  - `chore` 依赖更新/脚手架配置修改等
  - `ci` 持续集成
  - `types` 类型定义文件更改
  - `wip` 开发中

## Celery任务
```shell
#启动任务

python -m celery -A app.task.paper_assistant worker --pool=solo -l info
```
