-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
119 lines (99 loc) · 2.62 KB
/
Copy pathpyproject.toml
File metadata and controls
119 lines (99 loc) · 2.62 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
112
113
114
115
116
117
118
119
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinelos"
version = "0.1.0"
description = "The AI Operating System for Companies - Build digital twins, predict risks, generate actionable intelligence"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "SentinelOS Team"}
]
keywords = ["ai", "ml", "llm", "enterprise", "saas", "digital-twin"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Web Framework
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"python-multipart>=0.0.6",
# Data Processing
"pandas>=2.1.0",
"numpy>=1.26.0",
# ML & AI
"scikit-learn>=1.4.0",
"sentence-transformers>=2.2.0",
"openai>=1.10.0",
# Code Analysis
"gitpython>=3.1.40",
"pydriller>=2.5",
"radon>=6.0.1",
# Graph & Vector DB
"networkx>=3.2",
"chromadb>=0.4.22",
# Database
"sqlalchemy>=2.0.25",
"alembic>=1.13.0",
"asyncpg>=0.29.0",
# Configuration & Validation
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"python-dotenv>=1.0.0",
# Background Jobs
"celery>=5.3.0",
"redis>=5.0.0",
# Logging & Monitoring
"structlog>=24.1.0",
"prometheus-client>=0.19.0",
# Security
"python-jose[cryptography]>=3.3.0",
"passlib[bcrypt]>=1.7.4",
# HTTP Client
"httpx>=0.26.0",
# Utilities
"tenacity>=8.2.0",
"python-dateutil>=2.8.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"black>=24.1.0",
"ruff>=0.1.0",
"mypy>=1.8.0",
"pre-commit>=3.6.0",
]
[project.urls]
"Homepage" = "https://github.com/sentinelos/sentinelos"
"Documentation" = "https://docs.sentinelos.ai"
"Repository" = "https://github.com/sentinelos/sentinelos"
[tool.setuptools.packages.find]
where = ["."]
include = ["backend*"]
[tool.black]
line-length = 100
target-version = ["py310", "py311", "py312"]
include = '\.pyi?$'
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
target-version = "py310"
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_ignores = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
addopts = "-v --cov=backend --cov-report=term-missing"