-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
63 lines (53 loc) · 1.42 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
[project]
name = "doppkit"
dynamic = ["version", "readme"]
requires-python = ">=3.9"
license = { file="LICENSE" }
description = "Tool to allow retrival of USACE GRiD data"
dependencies = [
"httpx",
"rich",
"click",
"aiofiles",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: GIS",
]
maintainers = [
{ name = "Ognyan Moore", email = "[email protected]" },
{ name = "Howard Butler", email = "[email protected]" }
]
[project.urls]
homepage = "https://github.com/hobuinc/doppkit"
repository = "https://github.com/hobuinc/doppkit"
[project.optional-dependencies]
GUI = ["qtpy", "PySide6-essentials~=6.6.0", "qasync"]
[tool.black]
line-length = 88
target-version = ['py39', 'py311']
[tool.setuptools.package-dir]
doppkit = "src/doppkit"
[tool.setuptools.package-data]
doppkit = ["*.ico"]
[tool.setuptools.dynamic]
version = { attr = "doppkit.__version__" }
readme = { file = ["README.md"] }
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
doppkit = "doppkit.cli.__main__:cli"
doppkit-gui = "doppkit.gui.__main__:main"
[tool.mypy]
python_version = 3.9
warn_return_any = true
disallow_untyped_calls = false
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = [
"aiofiles"
]