-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.07 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
[build-system]
requires = ["hatchling>=1.26.3"]
build-backend = "hatchling.build"
[project]
name = "semsql"
version = "0.2.1"
description = "Transform OWL/RDF ontologies into SQLite databases with standardized SQL views."
authors = [{ name = "cmungall", email = "cjm@berkeleybop.org" }]
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = [
"click>=8.1.3,<9",
"linkml-runtime>=1.2.15",
"requests>=2.31.0",
"SQLAlchemy>=1.4,<3",
"SQLAlchemy-Utils>=0.38.2",
"PyYAML>=6.0.1",
"ruamel.yaml>=0.17.0",
"rdflib>=6.3.2",
]
[dependency-groups]
dev = [
"black",
"tox",
"pytest",
"mkdocs>=1.3.0",
"linkml>=1.7.4",
"mkdocs-mermaid2-plugin>=0.6.0",
"jupyter>=1.0.0",
"ipython-sql>=0.4.1",
]
[project.scripts]
semsql = "semsql.builder.cli:main"
gen-semsql-views = "semsql.sqlutils.viewgen:cli"
[tool.hatch.build]
exclude = [
"**/.#*",
"**/#*#",
"**/__pycache__/**",
"**/*.pyc",
]
[tool.hatch.build.targets.wheel]
packages = ["src/semsql"]
[tool.hatch.build.targets.sdist]
include = [
"src/semsql",
"README.md",
"LICENSE",
"pyproject.toml",
]