-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (47 loc) · 1.22 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
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "epic"
description = """
Harness deep learning and bounding boxes to perform object detection,
segmentation, tracking and more.
"""
readme = "README.md"
authors = [
{name = "Alphons Gwatimba"},
{email = "0go0vdp95@mozmail.com"}
]
requires-python = ">=3.10"
license = {file = "LICENSE"}
version = "0.1.0"
dependencies = [
'moviepy',
'jupyterlab',
'seaborn',
'natsort',
'opencv-python',
'imutils',
'lapsolver @ git+https://github.com/AlphonsG/py-lapsolver',
'scikit-image',
'alive-progress',
'logger-tt',
'pypeln',
'mmcv-full',
'mmdet',
'pydantic',
'multiprocessing_inference @ git+https://github.com/AlphonsG/Multiprocessing-Inference',
'python-dotenv',
'ipywidgets',
]
[project.urls]
homepage = "https://github.com/AlphonsG/EPIC-BBox-Cell-Tracking"
documentation = "https://github.com/AlphonsG/EPIC-BBox-Cell-Tracking"
repository = "https://github.com/AlphonsG/EPIC-BBox-Cell-Tracking"
[project.optional-dependencies]
test = ['pytest', 'pytest-cov']
docs = ['lazydocs']
[project.scripts]
epic = "epic.__main__:main"
[tool.setuptools]
packages = ["epic"]