-
Notifications
You must be signed in to change notification settings - Fork 24
/
pyproject.toml
53 lines (47 loc) · 1.15 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
[tool.poetry]
name = "unifyai"
packages = [{include = "unify"}]
version = "0.9.9"
readme = "README.md"
description = "A Python package for interacting with the Unify API"
authors = ["Unify <hello@unify.com>"]
repository = "https://github.com/unifyai/unify"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31.0"
openai = "^1.47.0"
jsonlines = "^4.0.0"
rich = "^13.8.1"
pytest = "^8.3.3"
pytest-timeout = "^2.3.1"
pytest-asyncio = "^0.24.0"
[tool.poetry.dev-dependencies]
flake8 = "~4.0.1"
mypy = "^1.1.1"
isort = "^5.11.4"
pre-commit = "^3.0.1"
wemake-python-styleguide = "^0.17.0"
black = "^24.3.0"
autoflake = "^1.6.1"
pydoc-markdown = "^4.0.0"
[tool.poetry.group.dev.dependencies]
types-requests = "*"
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["orchestra",]
[tool.mypy]
strict = true
ignore_missing_imports = true
allow_subclassing_any = true
allow_untyped_calls = true
pretty = true
show_error_codes = true
implicit_reexport = true
allow_untyped_decorators = true
warn_unused_ignores = false
warn_return_any = false
namespace_packages = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"