-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
93 lines (86 loc) · 2.33 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "gen3discoveryai"
version = "1.0.2"
description = "Gen3 Discovery AI Service"
authors = ["CTDS UChicago <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
packages = [{include = "gen3discoveryai"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.10.dev0"
aiohttp = ">=3.8.4"
aiosignal = ">=1.3.1"
async = ">=0.6.2"
attrs = ">=23.1.0"
frozenlist = ">=1.3.3"
idna = ">=3.4"
multidict = ">=6.0.4"
numpy = ">=1.24.3"
oauthlib = ">=3.2.2"
openai = ">=0.27.8"
pandas = ">=2.0.2"
pytz = ">=2023.3"
regex = ">=2023.6.3"
requests = ">=2.31.0"
six = ">=1.16.0"
tiktoken = ">=0.4.0"
tqdm = ">=4.65.0"
tzdata = ">=2023.3"
yarl = ">=1.9.2"
scipy = ">=1.10.1"
fastapi = ">=0.97.0"
cdislogging = ">=1.1.1"
pyyaml = ">=6.0"
setuptools = ">=67.8.0"
gunicorn = ">=20.1.0"
langchain = ">=0.0.302"
chromadb = ">=0.4.18"
gen3authz = ">=2.1.0"
authutils = ">=6.2.2"
google-cloud-aiplatform = ">=1.36.0"
unstructured = ">=0.11.0"
markdown = ">=3.5.1"
werkzeug = ">=3.0.1"
langchain-community = ">=0.0.14"
langchain-google-vertexai = ">=0.0.2"
langchain-openai = ">=0.0.3"
uvicorn = ">=0.27.0"
protobuf = "^3.20.0"
[tool.poetry.group.dev.dependencies]
# <8.0.0 is temporary, try removing. It was causing issues because the
# underlying pytest-* libraries hadn't updated yet to fix some breaking changes
pytest = ">=7.3.2,<8.0.0"
uvicorn = ">=0.22.0"
coverage = ">=7.3.2"
pytest-cov = ">=4.1.0"
pytest-asyncio = ">=0.21.1"
isort = ">=5.12.0"
black = ">=23.10.0"
pylint = ">=3.0.1"
pytest-profiling = ">=1.7.0"
[tool.pytest.ini_options]
# Better default `pytest` command which adds coverage
#
# WARNING: overriding default `pytest` command to include all this coverage
# may interfere with some debuggers (like PyCharm's), so it may not stop
# on breakpoints. If you run into this issue, you can comment
# the addopts out below and then run the pytest command with all these options
# manually if you want to see coverage
#
# see .coveragerc for what the coverage omits
addopts = """
-vv --cov-config=.coveragerc
--cov=gen3discoveryai
--cov-report term-missing:skip-covered
--cov-fail-under 90
--cov-report html:_coverage
--cov-branch
--profile --profile-svg
"""
[tool.isort]
known_first_party = ["gen3discoveryai"]
profile = "black"
line_length = 88
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"