-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
84 lines (79 loc) · 1.99 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
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cb2game"
version = "1.0.0"
authors = [
{ name="Jacob Sharf", email="[email protected]" },
{ name="Mustafa Omer Gul", email="[email protected]" },
{ name="Yoav Artzi", email="[email protected]" },
]
description = "A Collaborative Natural Language Instruction Game"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp==3.8.4",
"fire==0.4.0",
"numpy==1.23.5",
"python-dateutil==2.8.2",
"dataclasses_json==0.5.6",
"pygame==2.1.2",
"peewee==3.14.8",
"freetype-py==2.2.0",
"matplotlib==3.5.1",
"humanhash3==0.0.6",
"orjson==3.6.7",
"pendulum==2.1.2",
"mashumaro==3.5",
"viztracer==0.15.6",
"tqdm==4.64.0",
"sparklines==0.4.2",
"gymnasium==0.26.3",
"requests==2.28.1",
"pyyaml==6.0",
"colorhash==1.1.0",
"pre-commit==2.20.0",
"autoflake==1.7.7",
"pylint==2.15.5",
"google-auth==2.14.0",
"nest_asyncio==1.5.6",
"time-machine==2.8.2",
"appdirs==1.4.4",
"cachecontrol==0.12.11",
"openai==0.27.2",
"pdoc==13.1.1",
"gitpython==3.1.31",
"aiohttp_session==2.12.0",
"aiohttp_session[secure]==2.12.0",
"cryptography==41.0.1",
"tiktoken==0.4.0",
"pandas==2.0.3",
"watchdog==3.0.0",
"blessed==1.20.0",
]
[project.urls]
"Homepage" = "https://cb2.ai/"
"Bug Tracker" = "https://github.com/lil-lab/cb2/issues"
[tool.isort]
profile = "black"
[tool.autoflake]
remove-all-unused-imports=true
remove-duplicate-keys=true
[tool.black]
safe=true # Makes sure AST is semantically equivalent.
line-length=88
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/game/*.py # Exclude Unity directory.
| ^/env/*.py # Exclude gym env for now.
| .*_pb2.py # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''