-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.69 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "higlass-python"
description = "Python bindings for HiGlass"
authors = [
{ name = "Fritz Lekschas", email = "[email protected]" },
{ name = "Nezar Abdennur", email = "[email protected]" },
{ name = "Peter Kerpdjiev", email = "[email protected]" },
{ name = "Trevor Manz", email = "[email protected]" },
]
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 = [
"higlass-schema>=0.2.0",
"anywidget>=0.9.0",
"typing-extensions ; python_version<'3.9'",
]
requires-python = ">=3.8"
urls = { homepage = "https://github.com/higlass/higlass-python" }
[dependency-groups]
dev = ["anywidget[dev]", "jupyterlab", "pytest", "ruff"]
[tool.hatch.build.targets.wheel]
packages = ["src/higlass"]
[tool.hatch.version]
source = "vcs"
[tool.ruff]
line-length = 88
target-version = "py38"
[tool.ruff.lint]
extend-select = [
"E", # style errors
# "D", # pydocstyle
"F", # pyflakes
"I", # isort
"RUF", # ruff-specific rules
"UP", # pyupgrade
"W", # style warnings
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"F403", # unused-star-used
"F401", # unused import
]
"examples/*.ipynb" = [
"F811", # redefintion
]