-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
76 lines (70 loc) · 1.43 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rocket"
version="1.0"
description = "ROCKET-1 Library"
dependencies = [
"opencv-python==4.7.0.72",
"setuptools>=49.2.0",
"numpy",
"einops",
"requests>=2.20.0",
"typing>=3.6.6",
"lxml>=4.3.3",
"psutil>=5.6.2",
"Pyro4>=4.76",
"coloredlogs>=10.0",
"pillow>=8.0.0",
"dill>=0.3.1.1",
"daemoniker>=0.2.3",
"xmltodict==0.12.0",
"inflection>=0.3.1",
"jinja2>=2.11.2",
"imagehash>=4.0.0",
"av>=11.0.0",
"attr==0.3.2",
"attrs==22.1.0",
"dm_tree==0.1.7",
"gym",
"gym3==0.3.3",
"gymnasium",
"hydra_colorlog",
"hydra-core==1.3.2",
"hydra-joblib-launcher",
"Pillow==9.4.0",
"transformers==4.31.0",
"tree==0.2.4",
"cchardet",
"torch",
"torchvision>=0.16.0",
"tokenizers",
"efficientnet_pytorch",
"scipy",
"flaky",
"rich",
"lz4",
"chardet",
"cuda-python",
"diskcache",
"cython==3.0.0a10",
"portalocker",
"gradio>=5.0.0",
"openai==1.52.2",
]
authors = [
{name="Caishaofei", email="[email protected]"},
]
[options]
package_data = {'rocket'= ['*.json']}
[options.packages.find]
where = "rocket"
[tool.setuptools.packages.find]
include = ['rocket*']
[tool.setuptools.dynamic]
readme = {file = "README.md"}
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]