forked from Mondo-Robotics/DiT4DiT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 2.04 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "DiT4DiT"
authors = [
{name = "Teli Ma", email="telima9868@gmail.com"},
]
description = "DiT4DiT: Jointly Modeling Video Dynamics and Actions for Generalizable Robot Control"
version = "1.0.1"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["robotic manipulation", "world model", "robot learning", "generative models"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
]
[project.optional-dependencies]
dev = [
"black>=24.2.0",
"gpustat",
"ipython",
"pre-commit",
"ruff>=0.2.2",
]
sagemaker = [
"boto3",
"sagemaker"
]
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"tests", # test directory
"cache", # cache directory
"playground",
"results", # result directory
"checkpoints", # model checkpoint
"scripts", # script directory
"eval", # evaluation related directory
".vscode", # VS Code configuration directory
"*.egg-info", # egg-info metadata directory
"**.log", # log file
"*.tmp", # temporary file
"*.bak", # backup file
"**__pycache__**", # Python cache directory
"*.pyc", # compiled Python file
"*.pyo", # optimized Python file
"**bar**",
"DiT4DiT/config",
]
[tool.setuptools.package-data]
"cogact" = ["py.typed"]
[tool.black]
line-length = 121
target-version = ["py310"]
preview = true
[tool.ruff]
line-length = 121
target-version = "py310"
[tool.ruff.lint]
select = ["A", "B", "E", "F", "I", "RUF", "W"]
ignore = ["F722"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]