-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (49 loc) · 1.1 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
[project]
name = "embedify"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Ritesh Kadmawala", email = "[email protected]" }
]
dependencies = [
"pre-commit>=3.5.0",
"ruff>=0.1.15",
"typer>=0.9.0",
"openai[openai]>=1.12.0",
"weaviate-client[weaviate]==3.*",
"pydantic>=2.6.1",
]
readme = "README.md"
requires-python = ">= 3.8"
[project.scripts]
embedify = "embedify.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"ruff>=0.1.15",
"pre-commit>=3.5.0",
"ipython>=8.12.3",
"pyright>=1.1.351",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/embedify"]
# [tool.mypy]
# mypy_path = "stubs"
# disallow_untyped_defs = true
# disallow_any_unimported = true
# check_untyped_defs = true
# warn_return_any = true
# show_error_codes = true
# warn_unused_ignores = true
# files = ["src"]
[tool.pyright]
stubPath = "stubs"
typeCheckingMode = "strict"
reportMissingTypeStubs = false
venvPath = "."
venv = ".venv"