-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (45 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
49 lines (45 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "OTTR"
version = "0.0.0"
dependencies = [
'numpy',
'scikit-learn',
'btrack',
'scipy',
'scikit-image',
'matplotlib',
'tifffile',
'pyyaml',
'pandas',
'anytree',
'cellpose',
'nd2reader',
'opencv-python',
'tqdm',
]
requires-python = ">=3.10"
authors = [
{name = "Camiel Mannens", email = "camiel.mannens@kuleuven.be"},
{name = "Sten Linnarsson", email = "sten.linnarsson@ki.se"},
]
maintainers = [
{name = "Sten Linnarsson", email = "sten.linnarsson@ki.se"}
]
description = "Analysis pipeline for live imaging data contained in the OTTR paper"
readme = "README.md"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
[project.urls]
Homepage = "https://example.com"
Repository = "https://github.com/linnarsson-lab/OTTR.git"
"Bug Tracker" = "https://github.com/innarsson-lab/OTTR/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/OTTR"]