-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (48 loc) · 980 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "insight-client"
version = "0.2.0"
requires-python = ">=3.11"
authors = [
{ name = "John Dutchover", email = "[email protected]" },
]
description = "CLI for insight-ai-api"
readme = "README.md"
dynamic = ["version"]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64"]
[tool.pixi.dependencies]
typer = ">=0.15.1,<0.16"
requests = ">=2.32.3,<3"
[tool.pixi.feature.test.dependencies]
black = "*"
flake8 = "*"
mock = "*"
pytest = "*"
pytest-cov = "*"
[tool.pixi.feature.dev.dependencies]
pre-commit = "*"
[tool.pixi.environments]
dev = ["dev"]
test = ["test"]
[tool.black]
line-length = 88
target-version = ['py311', 'py312', 'py313', 'py314']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"