forked from superduper-io/superduper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
149 lines (138 loc) · 3.35 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "superduperdb"
description = "🔮 Super-power your database with AI 🔮"
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [{name = "Duncan Blythe", email = "[email protected]"}]
keywords = [
"mongo",
"mongodb",
"pymongo",
"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.26.16",
"dask[distributed]>=2022.6.0",
"dill>=0.3.6",
"fil>=1.1.0",
"networkx>=2.8.8",
"requests>=2.31.0",
"tqdm>=4.64.1",
"typer>=0.7.0",
"lancedb<0.2", # TODO: Find a solution and unpin
"readerwriterlock>=1.0.9",
"pandas>=2.0.2",
"flask>=2.2.3",
"flask-cors>=3.0.10",
"flask-httpauth>=4.7.0",
"werkzeug>=2.2.3",
"pydantic>=1",
"pymongo>=4.3.3",
"numpy>=1.24.3",
"overrides>=7",
"tenacity>=8.1.0",
"scikit-learn>=1.1.3",
"openai>=0.27.6",
"pillow>=9.4.0",
]
[project.optional-dependencies]
torch = [
"torch>=2.0.0,!=2.0.1",
"accelerate>=0.20.1",
"transformers>=4.29.1",
]
docs = [
"furo",
"ipython",
"myst_parser",
"nbsphinx",
"pandoc",
"sphinx",
"sphinx-autodoc-typehints",
"sphinx_copybutton",
"sphinxcontrib-mermaid",
"nbsphinx-link",
]
typing = [
"mypy>=1.3.0",
"types-pillow>=9.5.0.4",
"types-requests>=2.31.0.1",
"types-tqdm>=4.65.0.1",
"monkeytype",
"boto3-stubs>=1.26.154",
]
lint = [
"black>=23.3",
"interrogate>=1.5.0",
"isort>=5.12.0",
"ruff>=0.0.267",
]
tests = [
"httpx>=0.24.1",
"impall>=1.2.0",
"lorem>=0.1.1",
"pytest>=7.3.1",
"pytest-cov>=2.12.1",
"tdir>=1.6"
]
dev = ["superduperdb[docs,lint,tests,typing,torch]"]
[project.urls]
homepage = "https://www.superduperdb.com/"
documentation = "https://superduperdb.github.io/superduperdb/"
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
[tool.pytest.ini_options]
addopts = "-W ignore"
[tool.interrogate]
# Uncomment these next lines to generate a badge
#
# badge-format = "svg"
# generate-badge = "docs"
color = true
exclude = []
fail-under = 36.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.isort]
profile = "black"