-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpyproject.toml
93 lines (79 loc) · 2.17 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "mokapot"
authors = [{name = "William E. Fondrie", email = "[email protected]"}]
description = "Fast and flexible semi-supervised learning for peptide detection"
license = {text = "Apache 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.9"
dependencies = [
"numpy>=1.18.1",
"pandas>=1.0.3",
"scikit-learn>=0.22.1",
"numba>=0.48.0",
"matplotlib>=3.1.3",
"lxml>=4.6.2",
"triqler>=0.6.2",
"joblib>=1.1.0",
"importlib-metadata>=5.1.0",
"typeguard>=4.1.5",
"pyarrow>=15.0.0",
"scipy>=1.13.0",
"filelock>=3.16.1",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/wfondrie/mokapot"
Documentation = "https://mokapot.readthedocs.io"
"Bug Tracker" = "https://github.com/wfondrie/mokapot/issues"
"Discussion Board" = "https://github.com/wfondrie/mokapot/discussions"
[project.optional-dependencies]
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",
]
[tool.uv]
dev-dependencies = [
"pre-commit>=2.7.1",
"ruff>=0.4.4",
"pytest>=8.2.2",
"flake8>=7.1.1",
"wheel>=0.44.0",
"pytest-cov>=5.0.0"
]
[project.scripts]
mokapot = "mokapot.mokapot:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
[tool.pytest.ini_options]
testpaths = ["tests",]
norecursedirs = ["extra", ]
[tool.ruff]
extend-exclude = ["docs/source/conf.py"]
target-version = "py39"
exclude = ["docs", "notebooks", "*.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "T20"] # T20 is for print() statements.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"test_parser_pepxml.py" = ["E501"]
[tool.ruff.format]
docstring-code-format = true
preview = true