2021-12-06 12:43:34 -08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "kittycad"
|
2023-04-06 15:36:16 -07:00
|
|
|
version = "0.3.5"
|
2021-12-06 12:43:34 -08:00
|
|
|
description = "A client library for accessing KittyCAD"
|
|
|
|
|
|
|
|
authors = []
|
|
|
|
|
|
|
|
readme = "README.md"
|
|
|
|
packages = [
|
|
|
|
{include = "kittycad"},
|
|
|
|
]
|
|
|
|
include = ["CHANGELOG.md", "kittycad/py.typed"]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-04-06 20:35:21 -07:00
|
|
|
python = "^3.7"
|
2022-05-24 11:31:04 +00:00
|
|
|
httpx = ">=0.15.4,<0.24.0"
|
2022-07-29 11:30:06 +00:00
|
|
|
attrs = ">=20.1.0,<23.0.0"
|
2021-12-06 12:43:34 -08:00
|
|
|
python-dateutil = "^2.8.0"
|
|
|
|
|
2021-12-15 03:03:01 -08:00
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
Sphinx = "^4.3.1"
|
2022-08-04 11:33:00 +00:00
|
|
|
flake8 = "^5.0.4"
|
2022-03-07 01:19:04 +00:00
|
|
|
pytest = "^7.0.1"
|
2021-12-15 03:03:01 -08:00
|
|
|
sphinx-autodoc-typehints = "^1.12.0"
|
|
|
|
pyenchant = "^3.2.2"
|
2023-04-06 15:20:24 -07:00
|
|
|
sphinxcontrib-spelling = "^8.0.0"
|
2021-12-15 03:03:01 -08:00
|
|
|
toml = "^0.10.2"
|
2021-12-15 03:54:43 -08:00
|
|
|
sphinx-rtd-theme = "^1.0.0"
|
2023-04-06 15:20:32 -07:00
|
|
|
sphinx-automodapi = "^0.15"
|
2022-09-29 11:46:05 +00:00
|
|
|
pytest-cov = "^4.0.0"
|
2023-04-06 15:20:39 -07:00
|
|
|
pytest-asyncio = "^0.21.0"
|
2022-02-27 18:39:04 -08:00
|
|
|
openapi-parser = "^0.2.6"
|
2023-04-06 15:26:22 -07:00
|
|
|
autopep8 = "^2.0.0"
|
2023-01-27 14:50:36 -08:00
|
|
|
prance = "^0.22.11"
|
2022-04-06 20:35:21 -07:00
|
|
|
openapi-spec-validator = "^0.4.0"
|
2022-07-21 13:22:26 -07:00
|
|
|
jsonpatch = "^1.32"
|
2021-12-15 03:03:01 -08:00
|
|
|
|
2021-12-06 12:43:34 -08:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry>=1.0"]
|
|
|
|
build-backend = "poetry.masonry.api"
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|
|
|
|
target_version = ['py36', 'py37', 'py38']
|
|
|
|
exclude = '''
|
|
|
|
(
|
|
|
|
/(
|
|
|
|
| \.git
|
|
|
|
| \.venv
|
|
|
|
| \.mypy_cache
|
|
|
|
)/
|
|
|
|
)
|
|
|
|
'''
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
line_length = 120
|
2021-12-08 13:45:55 -08:00
|
|
|
profile = "black"
|