-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (43 loc) · 1.06 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
[tool.pyright]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "samtool"
version = "0.0.2"
authors = [
{ name="Jet", email="[email protected]" },
]
description = "SAM powered model for creating semantic segmentation datasets."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"segment_anything@git+https://github.com/facebookresearch/segment-anything.git",
"opencv-python",
"pycocotools",
"matplotlib",
"onnxruntime",
"onnx",
"torch",
"torchvision",
"numpy",
"pyyaml",
"gradio==3.44.0",
"wget",
]
keywords = ["Machine Learning, Image Segmentation"]
license = { file="./LICENSE.txt" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["samtool"]
[project.scripts]
samtool = "samtool:main_gradio"
# samtool-tk = "samtool:main_tk"
[project.urls]
"Homepage" = "https://github.com/jjshoots/samtool"