-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
96 lines (83 loc) · 2.14 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
96
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"]
[dependency-groups]
dev = [
"twine>=6.0.1",
"pre-commit>=2.7.1",
"ruff>=0.8.1"
]
docs = [
"numpydoc>=1.0.0",
"sphinx-argparse>=0.2.5",
"sphinx-rtd-theme>=0.5.0",
"nbsphinx>=0.7.1",
"ipykernel>=5.3.0",
"recommonmark>=0.5.0"
]
profile = [
"scalene",
"memray"
]
test = [
"pytest>=8.2.2",
"pytest-cov>=6.0.0"
]
[project]
authors = [{name = "William E. Fondrie", email = "fondriew@gmail.com"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
dependencies = [
"numpy>=2.0.0,<3.0.0",
"pandas>=2.0.3",
"scikit-learn>=0.22.1",
"triqler>=0.8.0",
"joblib>=1.1.0",
"importlib-metadata>=5.1.0",
"typeguard>=4.1.5",
"pyarrow>=15.0.0",
"scipy>=1.13.0",
"six>=1.16.0"
]
description = "Fast and flexible semi-supervised learning for peptide detection"
dynamic = ["version"]
license = {text = "Apache 2.0"}
name = "mokapot"
optional-dependencies = {plot = ["matplotlib>=3.1.3"], xml = ["lxml>=4.6.2"]}
requires-python = ">=3.9,<3.14"
[project.readme]
content-type = "text/markdown"
file = "README.md"
[project.scripts]
mokapot = "mokapot.mokapot:main"
[project.urls]
"Bug Tracker" = "https://github.com/wfondrie/mokapot/issues"
"Discussion Board" = "https://github.com/wfondrie/mokapot/discussions"
Documentation = "https://mokapot.readthedocs.io"
Homepage = "https://github.com/wfondrie/mokapot"
[tool.pytest.ini_options]
norecursedirs = ["extra"]
testpaths = ["tests"]
[tool.ruff]
exclude = ["docs", "notebooks", "*.ipynb"]
extend-exclude = ["docs/source/conf.py"]
line-length = 79
target-version = "py39"
[tool.ruff.format]
docstring-code-format = true
preview = true
[tool.ruff.lint]
select = ["E", "F", "T20", "I"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"docs/**/*.ipynb" = ["T20"]
"test_parser_pepxml.py" = ["E501"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]