-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.17 KB
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
[tool.poetry]
name = "ShadowFinder"
version = "0.7.0"
description = "Find possible locations of shadows."
authors = ["Bellingcat"]
license = "MIT License"
readme = "README.md"
packages = [{ include = "shadowfinder", from = "src" }]
repository = "https://github.com/bellingcat/ShadowFinder"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords=["shadow", "finder", "locator", "map"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/bellingcat/ShadowFinder/issues"
[tool.poetry.scripts]
shadowfinder = "shadowfinder.__main__:main"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
matplotlib = "^3.8"
suncalc = "^0.1.3"
fire = "^0.5"
pandas = "^2.2"
numpy = ">=1"
pytz = "^2025"
cartopy = "^0.24.1"
timezonefinder = {version = "^6.5", extras = ["pytz"]}
[tool.poetry.group.dev.dependencies]
black = "24.2.0"
pre-commit = "^3.7.1"
tox = "^4.15.1"
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"