[3fb473]: / pyproject.toml

Download this file

35 lines (33 with data), 813 Bytes

 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DeepNeuronSeg"
version = "0.1.0"
description = "ML Workflow for Neuron Instance Segmentation and Analysis"
authors = [
{ name = "Joshua Segal", email = "segalsfly@gmail.com" }
]
urls = { "Homepage" = "https://github.com/josh-segal/DeepNeuronSeg" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.10"
dependencies = [
"torch",
"torchvision",
"opencv-python",
"transformers",
"ultralytics",
"matplotlib",
"numpy",
"pandas",
"Pillow",
"PyQt5",
"PyQt5-sip",
"PyYAML",
"tqdm",
"tinydb"
]