-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (37 loc) · 1.23 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pyopenms_viz"
module = "pyopenms_viz"
dist-name = "pyopenms_viz"
author = "OpenMS Team"
version = "0.1.5"
author-email = "joshuacharkow@gmail.com"
home-page = "https://github.com/OpenMS/pyopenms_viz/"
description = "A package for visualizing mass spectrometry data using pandas dataframes"
readme = "README.md"
readme-content-type = "text/markdown"
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
]
requires-python = ">=3.10, <=3.13"
dependencies = ["pandas>=0.17"]
[project.optional-dependencies]
testing = ["pytest", "syrupy"]
all = ["bokeh>=3.4.1", "plotly", "matplotlib"]
bokeh = ["bokeh>=3.4.1"]
matplotlib = ["matplotlib"]
plotly = ["plotly"]
[project.entry-points.pandas_plotting_backends]
ms_bokeh = "pyopenms_viz._bokeh"
ms_plotly = "pyopenms_viz._plotly"
ms_matplotlib = "pyopenms_viz._matplotlib"
[tool.flit.sdist]
exclude = ["tests*"]