-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.35 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.35 KB
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
[project]
name = "aperturedb"
dynamic = ["version"]
description = "ApertureDB Python SDK"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["aperturedb", "graph", "database",
"image", "video", "metadata", "search", "indexing"]
authors = [
{name = "ApertureData Engineering", email = "team@aperturedata.io"}
]
dependencies = [
# Pin to the bridge version.
# https://github.com/tensorflow/tensorflow/issues/60320
'protobuf >=3.20.3,<7.0.0',
#Folllowing is needed parallel loaders, and basic things for
# making the notebooks.
'requests', 'boto3',
# https://github.com/Kaggle/kaggle-api/issues/611
'numpy<2; python_version<"3.9.0"', 'numpy', 'distributed',
'matplotlib', 'pandas', 'kaggle!=1.6.15', 'google-cloud-storage',
'ipython', 'dask[complete]', 'ipywidgets', 'pydantic>=2.6.0', 'devtools', 'typer',
"opencv-python-headless",
# Pinning this to resolve test errors temporarily
'ipywidgets==8.0.4',
'keepalive-socket==0.0.1',
'graphviz==0.20.2',
"python-dotenv",
]
[tool.setuptools.package-dir]
aperturedb = "aperturedb"
[project.urls]
"Homepage" = "https://github.com/aperture-data/aperturedb-python"
"Bug Reports" = "https://github.com/aperture-data/aperturedb-python/issues"
[project.optional-dependencies]
# This is used when we build the docker image for notebook
notebook = [
"torch",
"torchvision",
"tensorflow",
"facenet-pytorch",
]
# User install requirements, guaranteed to be pip installable
complete = [
"torch",
"torchvision",
"tensorflow",
"facenet-pytorch",
]
# Dev install requirements, bleeding edge, will break CI.
dev = [
"torch",
"torchvision",
"tensorflow",
"facenet-pytorch",
"coverage",
"autopep8",
"pre-commit",
"pytest",
"build",
"fuse-python ; platform_system == 'Linux'",
"rdflib",
]
# The following would provide a command line executable called `sample`
# which executes the function `main` from this package when invoked.
[project.scripts] # Optional
adb = "aperturedb.cli.adb:app"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "aperturedb.__version__"}