a b/pyproject.toml
1
[build-system]
2
requires = ["setuptools>=42", "wheel"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "DeepNeuronSeg"
7
version = "0.1.0"
8
description = "ML Workflow for Neuron Instance Segmentation and Analysis"
9
authors = [
10
    { name = "Joshua Segal", email = "segalsfly@gmail.com" }
11
]
12
urls = { "Homepage" = "https://github.com/josh-segal/DeepNeuronSeg" }
13
classifiers = [
14
    "Programming Language :: Python :: 3",
15
    "License :: OSI Approved :: MIT License",
16
    "Operating System :: OS Independent"
17
]
18
requires-python = ">=3.10"
19
dependencies = [
20
    "torch",
21
    "torchvision",
22
    "opencv-python",
23
    "transformers",
24
    "ultralytics",
25
    "matplotlib",
26
    "numpy",
27
    "pandas",
28
    "Pillow",
29
    "PyQt5",
30
    "PyQt5-sip",
31
    "PyYAML",
32
    "tqdm",
33
    "tinydb"
34
]