forked from facebookresearch/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 861 Bytes
/
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
requires-python = "==3.11"
build-backend = "setuptools.build_meta"
[project]
name = "chameleon"
version = "1.0.0"
description = "Chameleon: Mixed-Modal Early-Fusion Foundation Models"
readme = "README.md"
authors = [{name = "Chameleon Team"}]
license = {file = "LICENSE"}
dependencies = [
"transformers==4.36.2",
"xformers==0.0.23",
"Pillow==10.0.*",
"numpy==1.26.*",
"click",
"flask",
"flask_socketio",
]
[tool.setuptools.package-data]
chameleon = ["miniviewer/*.html"]
[tool.setuptools.packages.find]
include = ["chameleon*"]
[tool.mypy]
python_version = 3.11
disallow_untyped_calls = true
disallow_any_explicit = true
disallow_any_generics = true
ignore_missing_imports = true
follow_imports = 'skip'
[tool.isort]
profile = "black"
[tool.ruff]
extend-select = ["I"]