-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1.01 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
[project]
name = "mapknowledge"
version = "1.6.3"
description = "A sanitised and simplified view of SCKAN knowledge"
authors = [
{ name = "David Brooks", email = "d.brooks@auckland.ac.nz"},
{ name = "Tom Gillespie", email = "tom.h.gillespie@gmail.com"},
{ name = "Yuda Munarko", email = "yuda.munarko@auckland.ac.nz"},
]
requires-python = "==3.12.*"
dependencies = [
"networkx>=3.3",
"requests>=2.28.1",
"rdflib>=7.1.4",
"sparqlwrapper>=2.0.0",
"neurondm==0.1.10",
"pyontutils (==0.1.39)",
"structlog>=24.4.0",
"psycopg[binary,pool]>=3.2.9",
]
[project.optional-dependencies]
tools = [
"tqdm>=4.66.5",
]
[dependency-groups]
dev = [
"pytest>=8.4.0",
"rdflib-endpoint[cli]>=0.5.3",
"tqdm>=4.67.1",
]
[project.scripts]
sckan_connectivity = 'tools.sckan_connectivity:main'
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.pyright]
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"