-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.35 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
53
54
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "masa"
version = "0.1.0" # Replace with your actual version
description = "MASA: Matching Anything By Segmenting Anything"
readme = "README.md"
keywords = ["instance matching", "object tracking"]
authors = [
{ name = "Siyuan Li", email = "[email protected]" },
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">= 3.11"
dependencies = [
"wheel",
"torch==2.1.2",
"torchvision==0.16.2",
"transformers==4.38.2",
"tokenizers",
"numpy",
"opencv-python",
"supervision",
"openmim",
"mmcv==2.1.0",
"mmengine",
"nltk",
"h5py",
"einops",
"seaboard",
"fairscale",
# Additional dependencies installed via Git are listed in the installation script
]
[tool.setuptools]
package-dir = {"masa" = "masa"}
include-package-data = false
license-files = ["LICENSE"]
zip-safe = true
[tool.setuptools.packages.find]
include = ["masa*"]
exclude = ["docs*", "tests*", "third_party*", "assets*"]