-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (55 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=3.4"]
build-backend = "setuptools.build_meta"
[project]
name = "petasus"
authors = [
{name = "William E. Fondrie", email = "wfondrie@talus.bio"},
{name = "J. Sebastian Paez", email = "spaez@talus.bio"},
{name = "Carolyn Allen", email = "callen@talus.bio"},
]
description = "Utilties for working with DDA search results from Sage and Comet."
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.10"
dependencies = [
"click",
"loguru",
"polars",
"pyteomics",
"lxml",
"numpy",
"numba",
"pyarrow",
"hdf5plugin>=3.10.0",
"ms2ml",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/TalusBio/search2dlib"
[project.optional-dependencies]
dev = [
"pre-commit>=2.7.1",
]
[project.scripts]
petasus = "petasus.petasus:cli"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages]
find = {namespaces = false}
[tool.setuptools_scm]
[tool.ruff]
line-length = 79
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "T20"] # T20 is for print() statements.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]