-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 969 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 969 Bytes
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
[project]
name = "devpulse-ai-v2"
version = "0.1.0"
description = "Agent-driven intelligence platform for developer ecosystem signals."
authors = [
{name = "DevPulseAI Team", email = "devpulse@example.com"},
]
dependencies = [
"fastapi>=0.109.0",
"uvicorn>=0.27.0",
"supabase>=2.3.0",
"httpx>=0.26.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.1.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"beautifulsoup4>=4.12.0", # For scraping assumptions (Medium/Blogs)
"feedparser>=6.0.11", # For RSS feeds
"bytez>=0.1.0", # Assuming a pypi package or generic wrapper requests
"python-dateutil>=2.8.2",
"loguru>=0.7.2", # Better logging
]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]