Files
kittycad.py/pyproject.toml

40 lines
638 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"
[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"