-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "opencmo"
version = "0.1.0"
description = "Open-source AI CMO multi-agent system for indie developers"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"openai-agents>=0.12.4",
"crawl4ai",
"python-dotenv",
"httpx>=0.27",
"aiosqlite>=0.20",
"bcrypt>=4.1",
]
[project.optional-dependencies]
browser = ["browser-use", "playwright"]
geo-premium = ["anthropic>=0.49", "google-generativeai>=0.8"]
scheduler = ["apscheduler>=3.11"]
web = ["fastapi>=0.115", "uvicorn>=0.34", "jinja2>=3.1"]
publish = ["praw>=7.7", "tweepy>=4.14"]
tavily = ["tavily-python>=0.5"]
all = ["opencmo[geo-premium,scheduler,web,publish,tavily]"]
[project.scripts]
opencmo = "opencmo.cli:main"
opencmo-web = "opencmo.web.app:run_server"
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501", "E402"]