-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 940 Bytes
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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "gandalf-csr"
version = "0.1.11"
description = "Fast path finding in large knowledge graphs"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Max Wang", email = "max@covar.com"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
]
dependencies = [
"bmt>=1.4.6",
"lmdb>=1.4.0",
"msgpack>=1.0.0",
"numpy>=1.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=3.0",
"black>=22.0",
]
server = [
"fastapi>=0.100.0",
"httpx>=0.24.0",
"uvicorn>=0.20.0",
]
[project.scripts]
gandalf-build = "scripts.build_graph:main"
gandalf-query = "scripts.query_paths:main"
gandalf-diagnose = "scripts.diagnose:main"