-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1011 Bytes
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1011 Bytes
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
[project]
name = "armis_sdk"
version = "1.1.0"
description = "The Armis SDK is a package that encapsulates common use-cases for interacting with the Armis platform."
authors = [
{ name = "Shai Lachmanovich", email = "shai@armis.com" },
{ name = "Yakir Keisar", email = "yakir.keisar@armis.com" },
]
readme = "README.md"
requires-python = ">=3.9"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = "true"
[tool.mypy]
plugins = ['pydantic.mypy']
[tool.poetry.dependencies]
pandas = "*"
pyarrow = "*"
pydantic = "*"
httpx = "*"
httpx-retries = "*"
universalasync = "*"
[tool.poetry.group.build.dependencies]
pytest = "*"
pytest-asyncio = "*"
pytest-httpx = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
isort = "*"
mypy = "*"
pandas-stubs = "*"
pylint = "*"
python-dotenv = "*"
setuptools = "*"
[tool.poetry.group.docs.dependencies]
mkdocs = "*"
mkdocstrings-python = "*"
mkdocs-material = "*"