-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (45 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "regulatory-change-monitor"
version = "0.1.0"
description = "Monitor regulatory developments and assess their impact on your business"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
authors = [
{name = "Noam Raz"},
{name = "Pleasant Secret Labs"},
]
dependencies = [
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"sqlalchemy>=2.0.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
"anthropic>=0.40.0",
"feedparser>=6.0.0",
"beautifulsoup4>=4.12.0",
"httpx>=0.27.0",
"requests>=2.31.0",
"streamlit>=1.30.0",
"apscheduler>=3.10.0",
"bleach>=6.0.0",
"pyyaml>=6.0.0",
"aiosmtplib>=3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.2.0",
]
[tool.setuptools.packages.find]
include = ["rcm_app*", "rcm_frontend*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 100