-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.75 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.75 KB
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openmassspec"
version = "1.5.1"
description = "Open mass spectrometry: one install for the OpenMassSpec vendor reader stack (Thermo, Bruker, Waters, Agilent, SCIEX, Shimadzu)"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "Nathan Riley", email = "git@nathanriley.com" }]
requires-python = ">=3.9"
keywords = [
"mass-spectrometry",
"proteomics",
"raw",
"thermo",
"bruker",
"waters",
"tdf",
"mzml",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = ["openmassspec-io"]
[project.optional-dependencies]
# The base install always brings openmassspec-io (the vendor-agnostic Rust
# reader), which has every vendor - including SCIEX and Shimadzu -
# compiled in, so reading and mzML conversion work for all supported
# formats out of the box. Each extra additionally installs the standalone
# per-vendor package for direct use.
thermo = ["opentfraw"]
bruker = ["opentimstdf"]
waters = ["openwraw"]
agilent = ["openaraw"]
sciex = ["opensxraw"]
shimadzu = ["openszraw"]
all = ["opentfraw", "opentimstdf", "openwraw", "openaraw", "opensxraw", "openszraw"]
[project.urls]
Homepage = "https://github.com/Sigilweaver/OpenMassSpec"
Documentation = "https://github.com/Sigilweaver/OpenMassSpec"
Source = "https://github.com/Sigilweaver/OpenMassSpec"
Issues = "https://github.com/Sigilweaver/OpenMassSpec/issues"
[tool.setuptools]
packages = ["openmassspec"]
package-dir = { "" = "." }
license-files = ["LICENSE"]