-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
82 lines (73 loc) · 1.84 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
[tool.poetry]
name = "geococo"
version = "0.5.5"
description = "Converts GIS annotations to Microsoft's Common Objects In Context (COCO) dataset format"
authors = ["Jasper Siebring <[email protected]>"]
readme = "README.md"
repository = "https://github.com/jaspersiebring/GeoCOCO"
homepage = "https://geococo.readthedocs.io/"
keywords = ["coco", "annotation", "deep-learning", "gis", "qgis", "arcgis", "labeling", "ai", "yolo"]
packages = [
{include = "geococo"}
]
[tool.poetry.scripts]
geococo = "geococo.cli:app"
[tool.poetry.dependencies]
python = "^3.9"
rasterio = "^1.3.8"
setuptools = "^70.0.0"
geopandas = "^0.13.2"
fiona = "^1.10b2"
certifi = "^2024.07.04"
zipp = "^3.19.1"
opencv-python-headless = "^4.8.0.76"
pycocotools = "^2.0.7"
pillow = "^10.3.0"
pydantic = "^1.10.13"
fonttools = "^4.43.0"
tqdm = "^4.66.3"
typing-extensions = "^4.7.1"
typer = "^0.9.0"
semver = "^3.0.1"
numpy = "<2.0.0"
pandera = {extras = ["geopandas"], version = "^0.16.1"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
mypy = "^1.5.1"
black = "^23.7.0"
ruff = "^0.0.285"
types-pycocotools = "^2.0.0.4"
types-tqdm = "^4.66.0.2"
docformatter = {extras = ["tomli"], version = "^1.7.5"}
pytest-cov = "^4.1.0"
pandas-stubs = "^2.0.3.230814"
types-python-dateutil = "^2.8.19.14"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^1.3.0"
idna = "^3.7"
jinja2 = "^3.1.4"
requests = "^2.32.0"
myst-parser = "^2.0.0"
urllib3 = "^2.2.2"
toml = "^0.10.2"
types-toml = "^0.10.8.7"
[[tool.mypy.overrides]]
module = [
"rasterio.*",
"geopandas",
"shapely.*"
]
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
strict_optional = false
disable_error_code = 'no-redef'
[tool.ruff]
line-length = 88
[tool.ruff.per-file-ignores]
"geococo/__init__.py" = ["F401"]
[tool.docformatter]
black = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"