-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
95 lines (83 loc) · 2.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "splito"
description = "Machine Learning dataset splitting for life sciences."
dynamic = ["version"]
authors = [
{ name = "Lu Zhu", email = "[email protected]" },
{ name = "Hadrien Mary", email = "[email protected]" },
{ name = "Cas Wognum", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"tqdm",
"loguru",
"numpy",
"pandas",
"scipy",
"scikit-learn",
"matplotlib",
"seaborn",
"jenkspy",
"datamol>=0.12.5",
"rdkit",
]
[project.urls]
"Source Code" = "https://github.com/datamol-io/splito"
"Bug Tracker" = "https://github.com/datamol-io/splito/issues"
Documentation = "https://splito-docs.datamol.io/"
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm]
fallback_version = "dev"
[tool.setuptools.packages.find]
where = ["."]
include = ["splito", "splito.*"]
exclude = []
namespaces = false
[tool.black]
line-length = 110
target-version = ['py310', 'py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--verbose --durations=10 -n auto --cov=splito --cov-fail-under=85 --cov-report xml --cov-report term"
testpaths = ["tests"]
filterwarnings = ["ignore::DeprecationWarning:jupyter_client.connect.*:"]
[tool.coverage.run]
source = ["splito/"]
disable_warnings = ["no-data-collected"]
data_file = ".coverage/coverage"
[tool.coverage.report]
omit = ["splito/__init__.py"]
[tool.coverage.xml]
output = "coverage.xml"
[tool.ruff]
lint.ignore = [
"E501", # Never enforce `E501` (line length violations).
]
line-length = 110
target-version = "py310"
lint.per-file-ignores."__init__.py" = [
"F401", # imported but unused
"E402", # Module level import not at top of file
]