| # AutoSEO Engine - Configuration | |
| [tool.poetry] | |
| name = "autoseo-engine" | |
| version = "0.1.0" | |
| description = "Autonomous SEO AI Agent System" | |
| authors = ["AutoSEO Team"] | |
| license = "MIT" | |
| [tool.poetry.dependencies] | |
| python = "^3.9" | |
| pydantic = "^2.0.0" | |
| requests = "^2.31.0" | |
| beautifulsoup4 = "^4.12.0" | |
| lxml = "^4.9.0" | |
| sqlalchemy = "^2.0.0" | |
| alembic = "^1.11.0" | |
| celery = "^5.3.0" | |
| redis = "^4.5.0" | |
| fastapi = "^0.100.0" | |
| uvicorn = "^0.23.0" | |
| python-dotenv = "^1.0.0" | |
| tiktoken = "^0.5.0" | |
| sentence-transformers = "^2.2.0" | |
| numpy = "^1.24.0" | |
| pandas = "^2.0.0" | |
| scikit-learn = "^1.3.0" | |
| transformers = "^4.30.0" | |
| torch = "^2.0.0" | |
| accelerate = "^0.20.0" | |
| datasets = "^2.13.0" | |
| peft = "^0.4.0" | |
| bitsandbytes = "^0.41.0" | |
| [build-system] | |
| requires = ["poetry-core"] | |
| build-backend = "poetry.core.masonry.api" |