-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 992 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 992 Bytes
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
[project]
name = "ellishape-cli"
version = "1.23.0"
description = "Command-line version of ellishape"
authors = [
{ name = "Ping Wu", email = "wpwupingwp@outlook.com" },
{ name = "Sally yang", email = "2500876951@qq.com" },
]
dependencies = [
"opencv-contrib-python>=4.10.0.84",
"loguru>=0.7.2",
"numpy>1.26",
"matplotlib>=3.10.7",
"scikit-bio>=0.6.3",
"scipy>=1.16.2",
"biopython>=1.85",
# "plotly>=6.0.0",
# "kaleido>=0.2.1",
]
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",]
[project.urls]
"Homepage" = "https://www.plantplus.cn/ElliShape/"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/ellishape_cli"]