-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 1.23 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "ipyai"
dynamic = ["version"]
description = "Multi-backend terminal IPython assistant"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jeremy Howard", email = "info@answer.ai"}]
dependencies = ["fastcore>=1.12.31", "ipython>=9", "jupyter_client>=8", "jupyter_console>=6.6", "ipykernel>=6.29", "rich", "mistletoe", "ipythonng", "mcp", "safepyrun", "lisette>=0.1.20",
"safecmd", "pyskills", "toolslm"]
[project.scripts]
ipyai = "ipyai.cli:main"
ipyclaude = "ipyai.cli:main_claude"
ipycodex = "ipyai.cli:main_codex"
ipyai-mcp-bridge = "ipyai.mcp_bridge:main"
[project.urls]
Source = "https://github.com/answerdotai/ipyai"
[project.optional-dependencies]
dev = ["build>=1.0.0", "fastship>=0.0.6", "pytest", "pytest-asyncio", "pytest-xdist", "twine>=5.0.0"]
[tool.setuptools.dynamic]
version = {attr = "ipyai.__version__"}
[tool.setuptools.packages.find]
include = ["ipyai*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning:pty", "ignore:Pydantic serializer warnings:UserWarning"]
addopts = "-n 4 --dist loadfile"
[tool.fastship]