-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (79 loc) · 1.86 KB
/
pyproject.toml
File metadata and controls
91 lines (79 loc) · 1.86 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
85
86
87
88
89
90
91
[build-system]
build-backend = "hatchling.build"
requires = [
"debugpy",
"hatchling",
"packaging",
"gitpython",
"toml",
"typing-extensions",
]
[project]
authors = [
{ name = "Nezar Abdennur", email = "nabdennur@gmail.com " },
{ name = "Conrad Bzura", email = "conradbzura@gmail.com" },
]
dependencies = [
"sqlglot>=20.0.0,<30",
]
description = "Genomic Interval Query Language - SQL dialect for genomic range queries"
dynamic = ["version"]
maintainers = [
{ name = "Nezar Abdennur", email = "nabdennur@gmail.com " },
{ name = "Conrad Bzura", email = "conradbzura@gmail.com" },
]
name = "giql"
readme = "README.md"
requires-python = ">=3.11"
[project.optional-dependencies]
mcp = ["fastmcp>=2.0.0"]
[project.scripts]
giql-mcp = "giql.mcp.server:main"
[dependency-groups]
dev = [
"duckdb>=1.4.0",
"fastmcp>=2.0.0",
"hypothesis>=6.0.0",
"pandas>=2.0.0",
"pybedtools>=0.9.0",
"pytest-cov>=4.0.0",
"pytest>=7.0.0",
"ruff>=0.1.0",
"datafusion>=52.3.0",
]
docs = [
"sphinx>=7.0",
"sphinx-autobuild>=2024.0",
"sphinx-book-theme>=1.1",
"sphinx-design>=0.6",
]
[tool.hatch.metadata.hooks.custom]
path = "build-hooks/metadata.py"
[tool.pytest.ini_options]
addopts = "--cov --cov-config=.coveragerc"
[tool.ruff]
line-length = 89
[tool.ruff.format]
docstring-code-format = true
quote-style = "double"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.isort]
combine-as-imports = false
force-single-line = true
known-first-party = ["giql"]
[tool.pixi.workspace]
channels = ["conda-forge", "bioconda"]
platforms = ["osx-arm64", "osx-64", "linux-64"]
[tool.pixi.dependencies]
python = ">=3.11"
bedtools = ">=2.31.0"
pybedtools = ">=0.9.0"
pytest = ">=7.0.0"
pytest-cov = ">=4.0.0"
datafusion = ">=43.0.0"
duckdb = ">=1.4.0"
pandas = ">=2.0.0"
sqlglot = ">=20.0.0,<30"
pip = "*"
hypothesis = ">=6.148.2,<7"