-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (81 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
88 lines (81 loc) · 2.34 KB
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
80
81
82
83
84
85
86
87
88
[project]
name = "microfactual"
version = "0.1.1"
description = "A user-friendly Python framework for microbiome machine learning workflows"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Simeon Hebrew", email = "simeonhebrew@gmail.com"},
{name = "Lawrence Adu-Gyamfi", email = "lagyamfi@outlook.com"}
]
maintainers = [
{name = "Simeon Hebrew", email = "simeonhebrew@gmail.com"},
{name = "Lawrence Adu-Gyamfi", email = "lagyamfi@outlook.com"}
]
keywords = [
"microbiome",
"machine-learning",
"bioinformatics",
"metagenomics",
"classification",
"random-forest"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"dice-ml>=0.9",
"explainerdashboard>=0.5.1",
"matplotlib>=3.10.1",
"pandas>=2.2.3",
"ruff>=0.11.6",
"scikit-learn>=1.6.1",
"scipy>=1.15.2",
"skore>=0.10.0",
]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"pytest>=8.3.5",
"pytest-cov>=6.2.1",
"pre-commit>=3.5.0",
"mypy>=1.11.1",
"pandas-stubs>=2.0.0",
]
docs = [
"sphinx>=8.1.3",
"sphinx-autodoc-typehints>=3.0.1",
"sphinx-rtd-theme>=3.0.2",
"sphinxcontrib-mermaid>=2.0.0",
]
[project.scripts]
microfactual = "microfactual.main:main"
[tool.hatch.build.targets.wheel]
packages = ["src/microfactual"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 88
select = ["E", "F", "W", "I", "N", "D", "UP", "B", "A", "C90"]
ignore = ["E501", "N803"]
exclude = [".git", ".venv", "env_microbiome", "output", "__pycache__", "build", "dist"]
# Example: To ignore docstring rules in tests, uncomment below:
# per-file-ignores = {"test/*.py" = ["D"]}
[tool.ruff.format]
# Use ruff's built-in formatter for consistent code style
docstring-code-format = true
quote-style = "preserve"
indent-style = "space"
line-ending = "auto"