Files
kittycad.py/pyproject.toml

49 lines
833 B
TOML
Raw Normal View History

[tool.poetry]
name = "kittycad"
version = "0.0.3"
description = "A client library for accessing KittyCAD"
authors = []
readme = "README.md"
packages = [
{include = "kittycad"},
]
include = ["CHANGELOG.md", "kittycad/py.typed"]
[tool.poetry.dependencies]
python = "^3.6"
httpx = ">=0.15.4,<0.21.0"
attrs = ">=20.1.0,<22.0.0"
python-dateutil = "^2.8.0"
[tool.poetry.dev-dependencies]
Sphinx = "^4.3.1"
flake8 = "^4.0.1"
pytest = "^6.2.5"
sphinx-autodoc-typehints = "^1.12.0"
pyenchant = "^3.2.2"
sphinxcontrib-spelling = "^7.3.0"
toml = "^0.10.2"
[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
profile = "black"