-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 883 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
[tool.poetry]
name = "owntwin"
version = "0.2.0"
description = "User-driven digital twin framework."
authors = ["Kentaro Ozeki <kentaro.ozeki+dev@gmail.com>"]
license = "MIT"
repository = "https://github.com/owntwin/owntwin-cli"
homepage = "https://github.com/owntwin/owntwin-cli"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
mercantile = "^1.1.6"
geopandas = "^0.14.0"
requests = "^2.24.0"
svgwrite = "^1.4"
geopy = "^2.0.0"
scour = "^0.38.1"
Pillow = "^10.0.1"
typer = "^0.9.0"
loguru = "^0.5.3"
halo = "^0.0.31"
colorama = "^0.4.4"
InquirerPy = "^0.1.0"
importlib-resources = "^5.1.0"
xdg = "^5.0.1"
pyproj = "^3.6.0" # "^3.3.0"
[tool.poetry.dev-dependencies]
black = {version = "^20.8b1", allow-prereleases = true}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
owntwin = "owntwin.cli:app"