-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (40 loc) · 1015 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
[project.urls]
"Homepage" = "https://getjavelin.io"
[tool.poetry]
name = "javelin-sdk"
version = "RELEASE_VERSION"
description = "Python client for Javelin"
authors = ["Sharath Rajasekar <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
packages = [
{ include = "javelin_cli" },
{ include = "javelin_sdk" },
]
[tool.poetry.scripts]
javelin = "javelin_cli.cli:main"
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.24.0"
pydantic = "^2.9.2"
requests = "^2.31.0"
jmespath = "^1.0.1"
jsonpath-ng = "^1.7.0"
[tool.poetry.group.test.dependencies]
pytest = "^7.3.1"
pytest-httpx = "^0.22.0"
pytest-asyncio = "^0.21.0"
pytest-mock = "^3.10.0"
[tool.poetry.group.dev.dependencies]
black = "24.3.0"
ruff = "^0.0.265"
mypy = "^1.2.0"
pre-commit = "^3.3.1"
mkdocs = "^1.4.3"
mkdocstrings = {version = "0.21.2", extras = ["python"]}
python-dotenv = "^1.0.0"
mkdocs-material = "^9.1.13"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"