-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (61 loc) · 1.32 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
[build-system]
requires = [
"setuptools >= 64",
"setuptools_scm",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "lydata"
dynamic = ["version"]
description = "Library for handling lymphatic involvement data"
authors = [
{name = "Roman Ludwig", email = "roman.ludwig@usz.ch"}
]
readme = "README.md"
requires-python = ">=3.10"
keywords = ["data", "lymph", "involvement"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"pandas",
"pygithub",
"mistletoe",
"pandera",
"pydantic",
]
[project.urls]
source = "https://github.com/rmnldwg/lydata"
documentation = "https://lydata.readthedocs.io"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"sphinx-autodoc-typehints",
"myst-parser[linkify]",
]
test = [
"pytest",
]
[tool.setuptools.packages.find]
include = ["lydata"]
[tool.setuptools.package-data]
"lydata" = ["../*/data.csv", "../*/README.md"]
[tool.setuptools_scm]
write_to = "lydata/_version.py"
local_scheme = "no-local-version"
[tool.pytest.ini_options]
testpaths = "."
[tool.ruff]
exclude = ["docs"]
[tool.ruff.lint]
select = ["E", "F", "W", "B", "C", "R", "U", "D", "I", "S", "T", "A", "N"]
ignore = ["B028"]
[tool.markdownlint]
MD003 = false
MD013 = false
MD033 = false
MD041 = false