-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ['ecut']
[project]
name = "E-Cut"
authors = [
{name = "Zuohan Zhao", email = "zzhmark@126.com"},
{name = "Yufeng Liu", email = "yufeng_liu@seu.edu.cn"}
]
description = "Enhanced G-Cut algorithm on automated segmentation of interweaving neurons"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["linear-programming", "neuron-morphology", "neuorn-tracing"]
license = { text = "MIT License" }
dynamic = [ "version" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"scikit-learn",
"PuLP",
"scipy",
"scikit-learn",
"scikit-image",
"tqdm",
"pandas"
]
[project.urls]
"GitHub Project" = "https://github.com/SEU-ALLEN-codebase/E-Cut"
"Documentation" = "https://SEU-ALLEN-codebase.github.io/E-Cut"
[project.optional-dependencies]
docs = [ "pdoc" ]
[tool.setuptools_scm]