-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
64 lines (58 loc) · 1.41 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
[project]
name = "securechain-ssc-ingestion"
version = "1.1.0"
description = "SecureChain SSC Ingestion Service"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"dagster==1.12.6",
"dagster-webserver==1.12.6",
"dagster-postgres==0.28.6",
"redis==7.1.0",
"pydantic==2.12.4",
"pydantic-settings==2.12.0",
"neo4j==6.0.3",
"pymongo==4.15.4",
"aiocache==0.12.3",
"aiohttp==3.13.2",
"univers==31.1.0",
"psycopg2-binary==2.9.11",
"regex==2025.11.3",
]
[project.optional-dependencies]
dev = [
"ruff==0.14.6",
]
test = [
"pytest==9.0.1",
"pytest-asyncio==1.3.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[dependency-groups]
dev = [
"ruff>=0.8.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[tool.ruff.lint]
select = [
"A", # prevent using keywords that clobber python builtins
"B", # bugbear: security warnings
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"UP", # pyupgrade
"RUF", # the ruff developer's own rules
]
ignore = [
"E501", # Supress line-too-long warnings: trust black's judgement on this one
"C901", # Complex structure
"A004", # Module attribute shadowing
"B008", # Function calls in argument defaults
]