-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
79 lines (72 loc) · 1.47 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "marsilea"
authors = [
{name = "Mr-Milk", email = "[email protected]"},
{name = "Zhihang Zheng"}
]
license = {file = "LICENSE"}
readme = "README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Framework :: Matplotlib",
]
dynamic = ["version", "description"]
requires-python = ">=3.8"
urls = {Home="https://github.com/Marsilea-viz/marsilea"}
dependencies = [
"numpy",
"pandas[parquet]",
"matplotlib>=3.6",
"seaborn",
"scipy",
"legendkit",
"platformdirs"
]
[project.optional-dependencies]
dev = [
"ruff",
"icecream",
"python-hmr",
"pytest",
"scikit-learn",
"sphinx",
"numpydoc",
"sphinx_design",
"pydata-sphinx-theme",
"sphinx-copybutton",
"sphinx_gallery",
"mpl_fontkit",
"pre-commit",
]
[tool.hatch.version]
path = "src/marsilea/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/marsilea", "src/oncoprinter"]
[tool.hatch.build.targets.sdist]
exclude = [
"docs",
"app",
"data",
"img",
"tests",
"scripts",
"readthedocs.yaml",
]
include = [
"README.md",
"LICENSE",
"pyproject.toml",
"setup.py",
"src/marsilea",
"src/oncoprinter",
]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"docs/*" = ["E402", "E731"]
"scripts/*" = ["E402", "E731"]