55 lines
		
	
	
		
			984 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			984 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[tool.poetry]
 | 
						|
name = "kittycad"
 | 
						|
version = "0.0.6"
 | 
						|
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"
 | 
						|
sphinx-rtd-theme = "^1.0.0"
 | 
						|
sphinx-automodapi = "^0.13"
 | 
						|
pytest-cov = "^3.0.0"
 | 
						|
pytest-asyncio = "^0.16.0"
 | 
						|
openapi-parser = "^0.2.6"
 | 
						|
autopep8 = "^1.6.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"
 |