-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
82 lines (73 loc) · 1.87 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
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "higlass-python"
description = "Python bindings for HiGlass"
authors = [
{ name = "Fritz Lekschas", email = "code@lekschas.de" },
{ name = "Nezar Abdennur", email = "nabdennur@gmail.com" },
{ name = "Peter Kerpdjiev", email = "pkerpedjiev@gmail.com" },
{ name = "Trevor Manz", email = "trevor.j.manz@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
license = { text = "MIT" }
dynamic = ["version"]
readme = "README.md"
dependencies = [
"servir>=0.0.5",
"higlass-schema>=0.2.0",
"anywidget>=0.9.0",
"jinja2",
"jupyter-server-proxy>=3.0",
"typing-extensions ; python_version<'3.9'",
]
urls = { homepage = "https://github.com/higlass/higlass-python" }
[project.optional-dependencies]
fuse = [
"fusepy",
"simple-httpfs"
]
[tool.uv]
dev-dependencies = [
"anywidget[dev]",
"jupyterlab",
"pytest",
"ruff==0.0.285"
]
[tool.hatch.build.targets.sdist]
include = ["src"]
[tool.hatch.build.targets.wheel]
only-include = ["src"]
sources = ["src"]
[tool.hatch.version]
source = "vcs"
[tool.ruff]
line-length = 88
target-version = "py38"
extend-select = [
"E", # style errors
# "D", # pydocstyle
"F", # pyflakes
"I", # isort
"RUF", # ruff-specific rules
"UP", # pyupgrade
"W", # style warnings
]
[tool.ruff.per-file-ignores]
"__init__.py" = [
"F403", # unused-star-used
"F401", # unused import
]
[tool.ruff.isort]
known-first-party = ["higlass"]