-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
71 lines (66 loc) · 2.07 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
[tool.poetry]
name = "sage-engine"
version = "2.3.0"
description = "Sage: a preemptive SPARQL query engine for online Knowledge Graphs"
repository = "https://github.com/sage-org/sage-engine"
authors = [ "Thomas Minier <[email protected]>",
"Julien Aimonier-Davat <[email protected]>",
"Pascal Molli <[email protected]>",
"Hala Skaf <[email protected]>" ]
keywords = [ "rdf", "sparql", "query engine" ]
classifiers = [
"Topic :: Database :: Database Engines/Servers",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Scientific/Engineering"
]
readme = "README.md"
license = "MIT"
packages = [
{ include = "sage" }
]
include = [ "README.md" ]
exclude = [ "tests" ]
[tool.poetry.scripts]
sage = "sage.cli.http_server:start_sage_server"
sage-query = "sage.cli.commons:sage_query"
sage-debug= "sage.cli.debug:sage_query_debug"
sage-grpc = "sage.cli.grpc_server:start_grpc_server"
sage-postgres-init = "sage.cli.postgres:init_postgres"
sage-postgres-index = "sage.cli.postgres:index_postgres"
sage-postgres-put = "sage.cli.postgres:put_postgres"
sage-sqlite-init = "sage.cli.sqlite:init_sqlite"
sage-sqlite-index = "sage.cli.sqlite:index_sqlite"
sage-sqlite-put = "sage.cli.sqlite:put_sqlite"
sage-hbase-init = "sage.cli.hbase:init_hbase"
sage-hbase-put = "sage.cli.hbase:put_hbase"
[tool.poetry.dependencies]
python = "^3.7"
uvloop = "0.15.2"
PyYAML = "5.4.1"
rdflib = "5.0.0"
rdflib-jsonld = "0.5.0"
protobuf = "3.15.7"
click = "7.1.2"
fastapi = "0.63.0"
uvicorn = "0.13.4"
grpcio = "^1.36"
coloredlogs="15.0"
pylru="^1.0"
# optional dependencies
pybind11 = { version = "2.2.4", optional = true }
hdt = { version = "2.3", optional = true }
psycopg2-binary = { version = "2.8.6", optional = true }
happybase = { version = "1.2.0", optional = true }
[tool.poetry.extras]
hdt = ["pybind11", "hdt"]
postgres = ["psycopg2-binary"]
hbase = ["happybase"]
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-asyncio = "^0.14"
requests = "^2.25"
sphinx = "^2.3"
sphinx_rtd_theme = "^0.4.3"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"