-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.04 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
[tool.pysen]
version = "0.9"
[tool.pysen.lint]
enable_black = true
enable_flake8 = true
enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
[tool.pysen.lint.source]
excludes = [".venv/",".git/", ".pytest_cache/", ".python-version/","data","tmp_data/"]
[[tool.pysen.lint.mypy_targets]]
paths = ["."]
[tool.poetry]
name = "typography-generation"
version = "0.1.0"
description = ""
authors = ["shimoda-uec <[email protected]>"]
readme = "README.md"
packages = [{include = "typography_generation", from = "src"}]
[tool.poetry.dependencies]
python = "^3.9"
skia-python = "^87.5"
einops = "^0.6.1"
hydra-core = "^1.3.2"
logzero = "^1.7.0"
datasets = "^2.12.0"
torch = "^1.13"
scikit-learn = "^1.0"
pytest = "^7.3.1"
pillow = "9.0.1"
matplotlib = "3.5"
transformers = "4.30.2"
openpyxl = "^3.1.2"
tensorboard = "^2.14.1"
gcsfs = "^2023.9.2"
seam-carving = "^1.1.0"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
notebook = "^6.5.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"