-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (52 loc) · 1.65 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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"]
[project]
name = "waltlabtools"
dynamic = ["version"]
dependencies = [
"numpy>=1.11",
"scipy>=1.7",
"pandas>=1.3",
"matplotlib>=3.4",
"scikit-learn>=1.2",
]
requires-python = ">= 3.8"
authors = [
{name = "Tyler Dougan", email = "[email protected]"}
]
description = "A collection of tools for biomedical research assay analysis in Python."
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
all = [
"jax",
"numba",
"jupyterlab",
"numexpr",
"bottleneck",
"jinja2",
"openpyxl",
"xlrd",
]
[project.urls]
Anaconda = "https://anaconda.org/tylerdougan/waltlabtools"
Documentation = "https://waltlabtools.readthedocs.io/en/latest/"
Homepage = "https://github.com/tylerdougan/waltlabtools/"
"Issue Tracker" = "https://github.com/tylerdougan/waltlabtools/issues"
PyPI = "https://pypi.org/project/waltlabtools/"
[tool.setuptools.dynamic]
version = {attr = "waltlabtools.__version__"}
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "UP", "B", "PD", "NPY", "RUF", "S", "A", "C", "ICN", "PIE", "SIM", "PLC", "PLE", "PLR", "PLW", "PERF", "FURB"]
ignore = ["B028", "PLR0913", "RUF012", "C901", "PLR0912", "PLR0915", "PD101"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"