-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (69 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
78 lines (69 loc) · 1.91 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rosforge"
version = "0.2.0"
description = "AI-driven ROS1 to ROS2 migration CLI tool"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "ROSForge Contributors" }]
keywords = ["ros", "ros2", "migration", "robotics", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Code Generators",
]
dependencies = [
"typer>=0.12,<1.0",
"rich>=13.0,<14.0",
"pydantic>=2.0,<3.0",
"tomli-w>=1.0,<2.0",
"jinja2>=3.1,<4.0",
"lxml>=5.0,<6.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
claude = ["anthropic>=0.40,<1.0"]
gemini = ["google-genai>=1.0,<2.0"]
openai = ["openai>=1.50,<2.0"]
dev = [
"pytest>=8.0",
"pytest-cov",
"pytest-mock",
"ruff>=0.8",
"mypy>=1.13",
]
all = ["rosforge[claude,gemini,openai]"]
[project.scripts]
rosforge = "rosforge.cli.app:app"
[tool.hatch.build.targets.wheel]
packages = ["src/rosforge"]
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "RUF"]
ignore = ["B008", "E501", "RUF002", "RUF003", "RUF059"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["F401", "F811", "N806", "RUF043"]
[tool.mypy]
python_version = "3.10"
warn_return_any = false
warn_unused_configs = true
warn_unused_ignores = false
check_untyped_defs = true
disallow_untyped_defs = false
no_implicit_optional = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"