Path: blob/master/src/python/cocalc-api/pyproject.toml
1709 views
[project]1name = "cocalc-api"2version = "0.4.0"3description = "Python client for the CoCalc API"4authors = [{ name="William Stein", email="[email protected]" }]5readme = "README.md"6requires-python = ">=3.9"7dependencies = ["httpx"]8license = "MIT"910[tool.hatch.build.targets.wheel]11packages = ["src/cocalc_api"]12include = ["src/cocalc_api/py.typed"]1314[project.urls]15Homepage = "https://github.com/sagemathinc/cocalc/src/python/cocalc-api"16Repository = "https://github.com/sagemathinc/cocalc"17Documentation = "https://cocalc.com/api/python"18Source = "https://github.com/sagemathinc/cocalc/src/python/cocalc-api"19Issues = "https://github.com/sagemathinc/cocalc/issues"2021[tool.mypy]22python_version = "3.13"23# strict = true24# disallow_untyped_defs = true2526[tool.ruff]27line-length = 15028lint.select = ["E", "F", "B"] # Pyflakes, pycodestyle, bugbear, etc.2930[dependency-groups]31dev = [32"ipython",33"mkdocs",34"mkdocs-material",35"mkdocstrings[python]",36"mypy",37"pytest>=8.4.1",38"ruff>=0.12.11",39]404142