2021-12-06 12:43:34 -08:00
|
|
|
[tool.poetry]
|
|
|
|
name = "kittycad"
|
2022-04-27 13:22:13 -07:00
|
|
|
version = "0.1.0"
|
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-04-07 11:41:16 +00:00
|
|
|
httpx = ">=0.15.4,<0.23.0"
|
2021-12-06 12:43:34 -08:00
|
|
|
attrs = ">=20.1.0,<22.0.0"
|
|
|
|
python-dateutil = "^2.8.0"
|
|
|
|
|
2021-12-15 03:03:01 -08:00
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
Sphinx = "^4.3.1"
|
|
|
|
flake8 = "^4.0.1"
|
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"
|
|
|
|
sphinxcontrib-spelling = "^7.3.0"
|
|
|
|
toml = "^0.10.2"
|
2021-12-15 03:54:43 -08:00
|
|
|
sphinx-rtd-theme = "^1.0.0"
|
2022-04-07 11:41:38 +00:00
|
|
|
sphinx-automodapi = "^0.14"
|
2021-12-15 06:49:45 -08:00
|
|
|
pytest-cov = "^3.0.0"
|
2022-04-07 11:42:25 +00:00
|
|
|
pytest-asyncio = "^0.18.3"
|
2022-02-27 18:39:04 -08:00
|
|
|
openapi-parser = "^0.2.6"
|
2022-02-27 20:14:39 -08:00
|
|
|
autopep8 = "^1.6.0"
|
2022-04-06 20:35:21 -07:00
|
|
|
prance = "^0.21.8"
|
|
|
|
openapi-spec-validator = "^0.4.0"
|
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"
|