CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
pyproject.toml62 linesDownload Raw Back to sdk-python
1[build-system]2requires = ["hatchling>=1.27.0"]3build-backend = "hatchling.build"4 5[project]6name = "qwen-code-sdk"7version = "0.1.0"8description = "Python SDK for programmatic access to qwen-code CLI"9readme = "README.md"10requires-python = ">=3.10"11license = { text = "Apache-2.0" }12authors = [{ name = "Qwen Team" }]13keywords = ["qwen", "qwen-code", "sdk", "python", "ai", "code-assistant"]14classifiers = [15  "Development Status :: 3 - Alpha",16  "Intended Audience :: Developers",17  "License :: OSI Approved :: Apache Software License",18  "Programming Language :: Python :: 3",19  "Programming Language :: Python :: 3.10",20  "Programming Language :: Python :: 3.11",21  "Programming Language :: Python :: 3.12",22  "Topic :: Software Development :: Libraries :: Python Modules",23]24dependencies = ["typing-extensions>=4.12.0"]25 26[project.urls]27Homepage = "https://qwenlm.github.io/qwen-code-docs/"28Repository = "https://github.com/QwenLM/qwen-code"29Issues = "https://github.com/QwenLM/qwen-code/issues"30 31[project.optional-dependencies]32dev = [33  "mypy>=1.11.0",34  "pytest>=8.3.0",35  "pytest-asyncio>=0.24.0",36  "ruff>=0.8.0",37]38 39[tool.hatch.build.targets.wheel]40packages = ["src/qwen_code_sdk"]41 42[tool.pytest.ini_options]43testpaths = ["tests"]44pythonpath = ["src"]45asyncio_mode = "auto"46 47[tool.ruff]48line-length = 8849target-version = "py310"50 51[tool.ruff.lint]52select = ["E", "F", "I", "B", "UP", "ASYNC", "RUF"]53 54[tool.mypy]55python_version = "3.10"56strict = true57warn_unused_configs = true58warn_redundant_casts = true59warn_unused_ignores = true60show_error_codes = true61mypy_path = "src"62 
basant307/AI_Governance_Project · CoolFace