-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.5 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
[tool.poetry]
name = "geotrouvetout"
version = "1.0.0"
description = "geotrouvetout gives geolocation information from an image"
authors = [
"David Bret",
"Paul Chambaz <paul.chambaz@tutanota.com>",
"Feriel Cheggour",
"Marion Mazaud"
]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.92.0"
pillow = "^9.4.0"
rich-argparse = "^1.1.0"
scikit-image = "^0.20.0"
ultralytics = "^8.0.40"
argparse = "^1.4.0"
coloredlogs = "^15.0.1"
csvfile = "^3.4.0"
opencv-python = "^4.7.0.72"
numpy = "^1.24.2"
overpy = "^0.6"
pydantic = "^1.10.7"
pathlib = "^1.0.1"
pycountry = "^22.3.5"
pytesseract = "^0.3.10"
tesseract = "^0.1.3"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
requests = "^2.28.2"
# torch = "^1.13.1"
# torchvision = "^0.14.1"
torch = {url = "https://download.pytorch.org/whl/cpu/torch-1.13.1%2Bcpu-cp310-cp310-linux_x86_64.whl"}
torchvision = {url ="https://download.pytorch.org/whl/cpu/torchvision-0.14.1%2Bcpu-cp310-cp310-linux_x86_64.whl"}
langdetect = "^1.0.9"
geopy = "^2.3.0"
nominatim = "^0.1"
countryinfo = "^0.1.2"
osmnx = "^1.3.0"
shapely = "^2.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
pytest-clarity = "^1.0.1"
pytest-xdist = "^3.2.0"
mypy = "^1.0.0"
pylint = "^2.16.2"
pydocstyle = "^6.3.0"
pycodestyle = "^2.10.0"
black = "^23.1.0"
tox = "^4.4.5"
vulture = "^2.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
geotrouvetout = "geotrouvetout:main"