-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.14 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
[project]
name = "graphai-lib"
version = "0.0.11rc1"
description = "Not an AI framework"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"pydantic>=2.11.1",
]
[project.optional-dependencies]
dev = [
"ipykernel>=6.25.0",
"ruff>=0.1.5",
"pytest>=8.2.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.5.0",
"pytest-asyncio>=0.24.0",
"mypy>=1.7.1",
"types-networkx>=3.4.2.20250319",
]
docs = ["pydoc-markdown>=4.8.2 ; python_version < '3.12'"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["graphai", "graphai.nodes"]
[tool.setuptools.package-data]
graphai = ["py.typed"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
follow_imports = "normal"
strict_optional = true
[dependency-groups]
dev = [
"pytest>=8.3.5",
"pytest-asyncio>=0.25.3",
]