-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.23 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cytoprocess"
version = "0.1.0"
requires-python = ">=3.11"
description = "Package to process images and their features from .cyz files and upload them to EcoTaxa"
license = {text = "GPL-3.0-or-later"}
readme = "README.md"
authors = [{name = "Jean-Olivier Irisson", email = "irisson@normalesup.org"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"click>=8.0",
"ijson>=3.0",
"keyring>=23.0",
"numpy>=1.20",
"pandas>=1.3.0",
"pyarrow>=14.0.0",
"pyyaml>=5.4",
"requests>=2.25",
"scikit-image>=0.26",
"scipy>=1.7",
"matplotlib>=3.10"
]
[project.urls]
Homepage = "https://github.com/jiho/cytoprocess"
Repository = "https://github.com/jiho/cytoprocess"
Issues = "https://github.com/jiho/cytoprocess/issues"
[project.scripts]
cytoprocess = "cytoprocess.cli:main"
[tool.setuptools.package-data]
cytoprocess = ["templates/*.yaml"]