-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rangeplotter"
version = "0.1.7-rc1"
description = "Radar line-of-sight terrain visibility utility"
authors = [{name="Renwell Studio", email="support@renwell.studio"}]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.11"
keywords = ["radar", "line-of-sight", "terrain", "geospatial"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"typer[all]>=0.12.0",
"pydantic>=2.6.0",
"shapely>=2.0.4",
"pyproj>=3.6.0",
"rasterio>=1.3.9",
"rich>=13.7.0",
"requests>=2.32.0",
"numpy>=1.26.0",
"fastkml>=0.12",
"simplekml>=1.3.6",
"geographiclib>=2.0",
"python-dotenv>=1.0.0",
"psutil>=5.9.0",
"PyYAML>=6.0"
]
[project.scripts]
rangeplotter = "rangeplotter.cli.main:app"
[tool.setuptools.packages.find]
where = ["src"]
include = ["rangeplotter*"]
[tool.typer]
# future typer-specific config
[toolpytest.ini_options]
addopts = "-q"
pythonpath = ["src"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true