-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.01 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
[tool.poetry]
name = "seesaw"
version = "1.3.0"
description = "Seesaw"
authors = ["Oscar Moll <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
#python = "3.10.*"
#torch = ">=1.11"
#torchvision = ">=0.12.0"
#ray = {extras = ["default", "data"], version = ">=2.0"}
#Pillow = ">=9.1.0"
#pyroaring = ">=0.3.3"
#pyarrow = ">=8.0.0"
#annoy = ">=1.17.0"
#tqdm = ">=4.64.0"
#fastapi = ">= 0.77.1"
#pydantic = ">=1.9.0"
# scikit-learn = ">=1.1.0"
# pandas = ">=1.4.2"
# transformers = ">=4.19.0"
# datasets = ">=2.2.1"
# clip = {git = "https://github.com/openai/CLIP.git", rev = "e58d49454c9"}
# ftfy = ">=6.1.1"
[tool.poetry.dev-dependencies]
#ipywidgets = ">=8.0"
#pytest = ">=7.1.2"
#plotnine = ">=0.8.0"
#ipykernel = ">=6.13.0"
#pydantic-to-typescript = ">=1.0.8"
#py-spy = ">=0.3.12"
#line-profiler = "^3.5.1"
#bokeh = ">=2.4.3"
#black = ">=22.3.0"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"