forked from superduper-io/superduper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
118 lines (108 loc) · 2.89 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "superduperdb"
description = "🔮 Bring AI to your favourite database 🔮"
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [{name = "SuperDuperDB, Inc.", email = "opensource@superduperdb.com"}]
keywords = [
"databases",
"mongodb",
"data-science",
"machine-learning",
"mlops",
"vector-database",
"ai",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"boto3>=1.16",
"dill>=0.3.6",
"loguru>=0.7.2",
"loki-logger-handler>=0.1.1",
"networkx>=2.8.8",
"requests>=2.22", # lower bound from openai and boto3
"tqdm>=4.64.1",
"typer>=0.7.0",
"pylance>=0.6.1,<=0.8.14",
"pydantic>=1",
"pymongo>=4.3.3",
"numpy>=1.24.3",
"overrides>=7",
"tenacity>=8.1.0",
"pillow>=9.4.0",
"mongomock>=4.1.2",
"sqlglot<=20.10",
"PyYAML>=6.0.0",
"prettytable",
"python-dotenv",
"ray[default]>=2.8.1",
"uvicorn>=0.24.0",
"fastapi>=0.103.2",
"ibis>=3.3.0",
"ibis-framework>=5.1.0",
"sqlalchemy>=2.0.28"
]
[project.urls]
homepage = "https://www.superduperdb.com/"
documentation = "https://docs.superduperdb.com"
source = "https://github.com/SuperDuperDB/superduperdb/"
[tool.setuptools.packages.find]
include = ["superduperdb*"]
[tool.setuptools.dynamic]
version = {attr = "superduperdb.__version__"}
[tool.black]
skip-string-normalization = true
target-version = ["py38"]
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = true
warn_unused_ignores = true
disable_error_code = ["has-type", "attr-defined", "assignment", "misc", "override"]
[tool.pytest.ini_options]
addopts = "-W ignore"
[tool.interrogate]
color = true
exclude = []
fail-under = 30.1
ignore-magic = true
ignore-nested-classes = false
ignore-nested-functions = true
ignore-private = true
ignore-property-decorators = true
ignore-regex = []
ignore-semiprivate = true
omit-covered-files = true
quiet = false
verbose = 0
whitelist-regex = []
[tool.ruff]
extend-select = [
"I", # Missing required import (auto-fixable)
"F", # PyFlakes
#"W", # PyCode Warning
"E", # PyCode Error
#"N", # pep8-naming
#"D", # pydocstyle
]
ignore = ["E402"]
[tool.ruff.isort]
combine-as-imports = true