forked from jrudar/LANDMark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (66 loc) · 1.91 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "LANDMarkClassifier"
version = "2.1.0"
authors = [
{name = "Josip Rudar", email = "rudarj@uoguelph.ca"},
{name = "Teresita M. Porter"},
{name = "Michael Wright"},
{name = "G. Brian Golding"},
{name = "Mehrdad Hajibabaei", email = "mhajibab@uoguelph.ca"}
]
description = "LANDMark: An ensemble approach to the supervised selection of biomarkers in high-throughput sequencing data"
keywords = [
"ecology",
"multivariate statistics",
"machine learning",
"classification"
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy == 1.23.5",
"scikit-learn >= 1.1.2",
"joblib >= 1.2.0",
"pandas >= 1.5.0",
"scipy >= 1.8.1",
"skorch >= 0.13.0",
"torch >= 2.0.1"
]
[project.urls]
"Homepage" = "https://github.com/jrudar/LANDMark"
"Repository" = "https://github.com/jrudar/LANDMark.git"
"Bug Tracker" = "https://github.com/jrudar/LANDMark/issues"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"ruff",
"twine",
]
test = [
"pytest",
"pytest-cov"
]
[tool.setuptools]
py-modules = ["LANDMark"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 30"
[tool.coverage.run]
source = ["LANDMark"]