-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (39 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "i2nca"
version = "0.3.12"
authors = [
{ name="Jannik Witte" },
]
description = "A MSI workflow package for top-level use and introduction of data preprocessing into workflow engines"
readme = "README.md"
license = {file = "COPYING"}
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"numpy >= 1.24, < 2",
"pandas >= 2.1",
"matplotlib == 3.7, < 3.9",
"scipy >= 1.12",
"m2aia >= 0.5",
"pyimzml >= 1.5"
]
[project.urls]
Homepage = "https://github.com/cKNUSPeR/i2nca"
Issues = "https://github.com/cKNUSPeR/i2nca/issues"
[project.scripts]
i2nca_version = 'i2nca.main:get_version'
i2nca_agnostic_qc = 'i2nca.workflows.cli.agnostic_qc_cli:i2nca_angostic_qc'
i2nca_calibrant_qc = 'i2nca.workflows.cli.calibrant_qc_cli:i2nca_calibrant_qc'
i2nca_region_qc = 'i2nca.workflows.cli.region_qc_cli:i2nca_region_qc'
i2nca_convert_to_cp = 'i2nca.workflows.cli.pp_2_cp_cli:i2nca_convert_to_cp'
i2nca_convert_to_pc = 'i2nca.workflows.cli.profile_2_centroid_cli:i2nca_convert_to_pc'
i2nca_convert_to_cc = 'i2nca.workflows.cli.pc_2_cc_cli:i2nca_convert_to_cc'
i2nca_file_joiner = 'i2nca.workflows.cli.file_joiner_cli:i2nca_file_joiner'
i2nca_file_splitter = 'i2nca.workflows.cli.file_splitter_cli:i2nca_file_splitter'