-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (53 loc) · 1.04 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
[project]
name = "ontology_matching_service"
version = "0.1.1"
description = "Your project description"
authors = [
{name="Heberto Mayorquin", email="[email protected]"}
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10,<4.0"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent"
]
dependencies = [
"qdrant_client",
"openai==0.27.8",
"fastapi",
"uvicorn",
"pydantic",
"tiktoken",
"pyodbc",
]
[build-system]
requires = ["setuptools>=65"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src", "app"]
[tool.black]
line-length = 120
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| venv
| html
| htmlcov
| md
)/
'''