-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 1.73 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "pyteomics"
description = "A framework for proteomics data analysis."
authors = [
{name = "Anton Goloborodko"},
{name = "Lev Levitsky", email = "pyteomics@googlegroups.com"},
{name = "Joshua Klein"}
]
readme = "README.rst"
requires-python = ">= 3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries"
]
[tool.setuptools]
packages = ["pyteomics", "pyteomics.mass", "pyteomics.openms", "pyteomics.auxiliary"]
[project.optional-dependencies]
XML = ["lxml", "numpy", "psims"]
TDA = ["numpy"]
graphics = ["matplotlib"]
DF = ["pandas>=0.17"]
Unimod = ["lxml", "sqlalchemy >= 1.4"]
numpress = ["pynumpress < 0.1.2; python_version < '3.11'", "pynumpress; python_version >= '3.11'"]
mzMLb = ["h5py", "hdf5plugin"]
proforma = ["psims >= 1.4.0"]
all = ["lxml", "numpy", "psims >= 1.4.0", "matplotlib", "pandas>=0.17", "sqlalchemy>=1.4",
"pynumpress < 0.1.2; python_version < '3.11'", "pynumpress; python_version >= '3.11'",
"h5py", "hdf5plugin", "spectrum_utils>=0.4"]
[project.urls]
Documentation = "http://pyteomics.readthedocs.io"
"Source Code" = "https://github.com/levitsky/pyteomics"
"Issue Tracker" = "https://github.com/levitsky/pyteomics/issues"
"Mailing List" = "https://groups.google.com/group/pyteomics"
[tool.setuptools.dynamic]
version = {attr = "pyteomics.version.__version__"}