-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 827 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 827 Bytes
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "linelm"
version = "1.0.0"
description = "A transformer-based model for processing and generating vector single-lines"
readme = "README.md"
license = "MIT"
authors = ["LineLM Team"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.8"
torch = ">=1.9.0"
transformers = ">=4.0.0"
torchaudio = "*"
torchvision = "*"
numpy = "*"
tqdm = "*"
shapely = "*"
opencv-python = "*"
gdown = "^5.2.0"
scipy = "*"
geojson = "*"
fiona = ">=1.8.0"
geopandas = ">=0.10.0"
jupyter = "^1.1.1"
[tool.poetry.group.dev.dependencies]
pytest = ">=6.0"
black = "*"
flake8 = "*"
isort = "*"
mypy = "*"
[tool.black]
line-length = 88
target-version = ["py38", "py39", "py310", "py311"]
[tool.isort]
profile = "black"
line_length = 88