-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.31 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
[tool.poetry]
name = "dted"
version = "1.2.0"
description = "Parser for DTED data."
authors = ["Ben Bonenfant <bonenfan5ben@gmail.com>"]
license = "MIT"
readme = 'README.md'
homepage = "https://github.com/bbonenfant/dted"
repository = "https://github.com/bbonenfant/dted"
keywords = ['DTED', 'SRTM', 'terrain', 'elevation']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=1.22"
[tool.poetry.dev-dependencies]
black = "24.3.0"
mypy = "^1.0"
pytest = "7.2.0"
pytest-black = "^0.3.12"
pytest-mypy = "^0.8.1"
[tool.poetry.scripts]
dted = "dted.__main__:main"
[tool.black]
line-length = 92
target-version = ['py39', 'py310', 'py311']
exclude = '\.git|\.idea|\.venv|\.\*cache|\*\.egg-info'
[tool.mypy]
python_version = "3.10"
mypy_path = "dted"
ignore_errors = false
ignore_missing_imports = true
disallow_untyped_defs = true
strict_optional = false
plugins = "numpy.typing.mypy_plugin"
[tool.pytest.ini_options]
addopts = "-vv --black --mypy"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"