-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (102 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (102 loc) · 2.09 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[project]
name = "brand-os"
version = "0.1.0"
description = "CLI-first brand operations toolkit - unified personas, intel, content, and publishing"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Ali Madad", email = "ali@scty.org"},
]
keywords = ["brand", "marketing", "persona", "content", "cli"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"pydantic>=2.0",
"typer>=0.12",
"rich>=13.0",
"pyyaml>=6.0",
"httpx>=0.27",
]
[project.optional-dependencies]
gemini = [
"google-genai>=1.0",
]
openai = [
"litellm>=1.40",
]
persona = [
"litellm>=1.40",
"exa-py>=1.0",
]
optimize = [
"dspy>=2.5",
]
intel = [
"apify-client>=1.7",
"beautifulsoup4>=4.12",
]
video = [
"replicate>=1.4",
"cartesia>=2.2",
]
image = [
"google-genai>=1.0",
]
publish = [
"tweepy>=4.14",
]
server = [
"fastapi>=0.115",
"uvicorn>=0.32",
]
email = [
"resend>=2.0",
]
workflows = [
"python-statemachine>=2.0",
"aiosqlite>=0.20",
]
notifications = [
"slack-sdk>=3.27",
]
agents = [
"pydantic-ai>=0.0.24",
]
predict = [
"statsforecast>=1.7",
"pyod>=2.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"ruff>=0.5",
]
all = [
"brand-os[gemini,openai,persona,optimize,intel,video,image,publish,server,email,workflows,notifications,agents,predict]",
]
[project.scripts]
brandos = "brand_os.cli:app"
[project.urls]
Homepage = "https://github.com/amadad/brand-os"
Repository = "https://github.com/amadad/brand-os"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/brand_os"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"