-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
61 lines (56 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = [
"pytest>=8.3",
"pytest-cov>=6.0",
]
[project]
name = "pycellin"
version = "0.5.0"
authors = [{ name = "Laura Xénard", email = "laura.xenard@pasteur.fr" }]
description = "Graph-based framework to manipulate and analyze cell lineages from cell tracking data"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"geff>=1.1.3.1.1",
"igraph>=0.9",
"lxml>=5",
"matplotlib>=3",
"networkx>=3",
"pandas>=2",
"plotly>=5",
"scikit-image>=0.19",
"scipy>=1.15",
"shapely>=2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
]
[project.urls]
Documentation = "https://Image-Analysis-Hub.github.io/pycellin/"
Examples = "https://Image-Analysis-Hub.github.io/pycellin/notebooks/"
Issues = "https://github.com/Image-Analysis-Hub/pycellin/issues"
Source = "https://github.com/Image-Analysis-Hub/pycellin/"
[tool.setuptools]
packages = [
"pycellin",
"pycellin.classes",
"pycellin.graph",
"pycellin.graph.properties",
"pycellin.io",
"pycellin.io.cell_tracking_challenge",
"pycellin.io.geff",
"pycellin.io.trackmate",
"pycellin.io.trackpy",
]
[tool.pytest.ini_options]
testpaths = ["tests"]