-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
49 lines (40 loc) · 1.27 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "clustergram"
dynamic = ["version"]
authors = [
{ name = "Martin Fleischmann", email = "[email protected]" },
]
maintainers = [{ name = "Martin Fleischmann" }]
license = { text = "MIT" }
description = "Clustergram - visualization and diagnostics for cluster analysis"
readme = "Readme.md"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = ["pandas", "numpy", "matplotlib"]
[project.urls]
Home = "https://clustergram.readthedocs.io"
Repository = "https://github.com/martinfleis/clustergram"
[tool.setuptools.packages.find]
include = ["clustergram", "clustergram.*"]
[tool.coverage.run]
omit = ["clustergram/test_clustergram.py"]
source = ['clustergram']
[tool.coverage.report]
exclude_lines = ["except ImportError"]
ignore_errors = true
omit = ["clustergram/test_clustergram.py"]
[tool.ruff]
line-length = 88
exclude = ["doc"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "N", "B", "A", "C4", "SIM", "ARG"]
ignore = ["B006"]