Ahmed766 commited on
Commit
5bf7545
·
verified ·
1 Parent(s): 820254b

Upload pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. pyproject.toml +37 -0
pyproject.toml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AutoSEO Engine - Configuration
2
+
3
+ [tool.poetry]
4
+ name = "autoseo-engine"
5
+ version = "0.1.0"
6
+ description = "Autonomous SEO AI Agent System"
7
+ authors = ["AutoSEO Team"]
8
+ license = "MIT"
9
+
10
+ [tool.poetry.dependencies]
11
+ python = "^3.9"
12
+ pydantic = "^2.0.0"
13
+ requests = "^2.31.0"
14
+ beautifulsoup4 = "^4.12.0"
15
+ lxml = "^4.9.0"
16
+ sqlalchemy = "^2.0.0"
17
+ alembic = "^1.11.0"
18
+ celery = "^5.3.0"
19
+ redis = "^4.5.0"
20
+ fastapi = "^0.100.0"
21
+ uvicorn = "^0.23.0"
22
+ python-dotenv = "^1.0.0"
23
+ tiktoken = "^0.5.0"
24
+ sentence-transformers = "^2.2.0"
25
+ numpy = "^1.24.0"
26
+ pandas = "^2.0.0"
27
+ scikit-learn = "^1.3.0"
28
+ transformers = "^4.30.0"
29
+ torch = "^2.0.0"
30
+ accelerate = "^0.20.0"
31
+ datasets = "^2.13.0"
32
+ peft = "^0.4.0"
33
+ bitsandbytes = "^0.41.0"
34
+
35
+ [build-system]
36
+ requires = ["poetry-core"]
37
+ build-backend = "poetry.core.masonry.api"