-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.4 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
[project]
name = "merlin-vlm"
version = "0.0.1"
requires-python = ">=3.9"
description = "Merlin: A Vision Language Foundation Model for 3D Computed Tomography"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Louis Blankemeier", email = "[email protected]"},
{ name = "Ashwin Kumar", email = "[email protected]"},
{ name = "Stanford Machine Intelligence for Medical Imaging (MIMI)" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"numpy==1.26.4",
"torch==2.1.2",
"monai==1.3.0",
"huggingface_hub",
"transformers==4.38.2",
"torchvision==0.16.2",
"nibabel",
"nltk",
]
[project.urls]
homepage = "https://github.com/StanfordMIMI/Merlin"
repository = "https://github.com/StanfordMIMI/Merlin"
[build-system]
requires = ["setuptools>=67.8.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["merlin", "merlin.data", "merlin.models", "merlin.utils"]
exclude = ["documentation"]
[tool.codespell]
skip = '.git,*.pdf,*.svg, *.png'