generated from siddk/mjolnir
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (66 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "lilac"
version = "0.0.1"
description = "LILAC: Online Language Corrections for Robotic Manipulation via Shared Autonomy"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Siddharth Karamcheti", email="[email protected]"},
{name = "Yuchen Cui", email="[email protected]"}
]
keywords = ["human-robot interaction", "robotics", "natural language processing", "machine learning"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"annoy",
"einops",
"gym",
"ipython",
"matplotlib",
"openai",
"pygame",
"pytorch-lightning==1.6.4",
"scipy",
"transformers",
"typed-argument-parser",
]
[project.optional-dependencies]
dev = [
# https://github.com/psf/black/issues/2964
"black>=22.3.0",
"flake8>=4.0.1",
"isort>=5.10.1",
"pre-commit"
]
[project.urls]
homepage = "https://github.com/Stanford-ILIAD/lilac"
repository = "https://github.com/Stanford-ILIAD/lilac"
documentation = "https://github.com/Stanford-ILIAD/lilac"
[tool.setuptools]
packages=["lilac"]
[tool.black]
line-length = 121
preview = true
target-version = ["py38"]
[tool.isort]
ensure_newline_before_comments = true
force_grid_wrap = 0
include_trailing_comma = true
lines_after_imports = 2
line_length = 121
multi_line_output = 3
profile = "black"
use_parentheses = true