-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (62 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
72 lines (62 loc) · 1.45 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
[project]
name = "tachyon-cuda"
version = "0.1.0"
description = "AI-Powered CUDA Performance Analyzer with Source-Level Attribution"
requires-python = ">=3.10"
license = "MIT"
authors = [
{name = "Tachyon Team"},
]
readme = "README.md"
keywords = ["cuda", "gpu", "performance", "profiling", "ai"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Debuggers",
"Programming Language :: Python :: 3",
]
dependencies = [
"click>=8.0",
"rich>=13.0",
"prompt-toolkit>=3.0",
"structlog>=24.0",
"tomli>=2.0;python_version<'3.11'",
]
[project.optional-dependencies]
ai = [
"openai>=1.0",
"anthropic>=0.20",
"litellm>=1.0",
]
mcp = [
"mcp>=1.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.4",
"mypy>=1.10",
]
[project.scripts]
tachyon = "tachyon.cli.main:app"
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
tachyon = ["agent/*.md", "i18n/*.toml", "skills/cuda/*.md", "skills/cuda/.gitkeep"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "B"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
asyncio_mode = "auto"