-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpyproject.toml
83 lines (75 loc) · 2.05 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
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[project]
name = "pymzml"
description = "high-throughput mzML parsing"
authors = [
{ name = 'M. Koesters' },
{ name = 'J. Leufken' },
{ name = 'S. Schulze' },
{ name = 'K. Sugimoto' },
{ name = 'R. Zahedi' },
{ name = 'M. Hippler' },
{ name = 'C. Fufezan', email = '[email protected]' }
]
urls = { Homepage = 'https://pymzml.github.com' }
requires-python = ">=3.7.0"
readme = "README.rst"
license = { text = 'The MIT license' }
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: POSIX :: SunOS/Solaris',
'Operating System :: Unix',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
dependencies = [
'numpy >= 1.8.0',
'regex',
]
dynamic = ["version"]
[project.optional-dependencies]
full = [
'plotly<5.0',
'matplotlib',
'pynumpress>=0.0.4',
'ms_deisotope==0.0.14',
]
plot = ['plotly<5.0', 'matplotlib',]
pynumpress = ['pynumpress>=0.0.4',]
deconvolution = ['ms_deisotope==0.0.14',]
test = [
'cython',
'coverage >= 4.2',
'codecov',
'pytest',
'tox',
'sphinx',
'sphinx_rtd_theme',
'numpydoc==1.7.0',
]
[tool.hatch.version]
source = "versioningit"
[tool.versioningit]
default-version = "0.0.0+unknown"
[tool.versioningit.next-version]
method = "smallest"
[tool.versioningit.format]
distance = "{next_version}.dev{distance}"
dirty = "{next_version}.dev{distance}"
distance-dirty = "{next_version}.dev{distance}"
[tool.hatch.build]
editable = true
[tool.hatch.metadata]
dynamic = ["version"]