-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
71 lines (64 loc) · 1.48 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[tool.poetry]
name = "hrflow"
version = "4.2.0"
description = "Python hrflow.ai API package"
authors = ["HrFlow.ai <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/hrflow/python-hrflow-api"
documentation = "https://github.com/hrflow/python-hrflow-api"
exclude = ["Makefile", ".pre-commit-config.yaml", "manifest.json", "tests", "poetry.lock"]
packages = [{include = "hrflow"}]
[tool.poetry.urls]
"HrFlow.ai Documentation" = "https://developers.hrflow.ai"
"Changelog" = "https://github.com/Riminder/python-hrflow-api/releases"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.31.0"
tqdm = "^4.66.2"
openpyxl = "^3.1.2"
pydantic = "^1.10.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
python-dotenv = "^1.0.0"
isort = "^5.13.1"
black = "^23.12.0"
flake8 = "^6.1.0"
pytest-timestamper = "^0.0.9"
notebook = "^7.1.1"
[tool.black]
line-length = 88
target-version = ["py37", "py38", "py39", "py310"]
preview = true
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
markers = [
"archive",
"asking",
"auth",
"editing",
"embedding",
"geocoding",
"hawk",
"imaging",
"indexing",
"job",
"linking",
"mozart",
"ocr",
"parsing",
"parsing_file_async",
"parsing_file_sync",
"profile",
"quicksilver",
"rate_limit",
"scoring",
"searching",
"tagging",
"text",
"unfolding"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"