-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
110 lines (102 loc) · 2.26 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "codem"
requires-python = ">=3.9"
description = "A package for co-registering geospatial data"
readme = "readme.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "Preston Hartzell", email = "[email protected]" },
{ name = "Jesse Shanahan" },
{ name = "Bahirah Adewunmi" },
]
maintainers = [{ name = "Ognyan Moore", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = ["typing-extensions"]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/NCALM-UH/CODEM"
repository = "https://github.com/NCALM-UH/CODEM"
[tool.setuptools]
package-dir = { "" = "src" }
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "codem.__version__" }
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
codem = "codem.main:main"
vcd = "vcd.main:main"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.py(i|t)?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv*
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.mypy]
plugins = 'numpy.typing.mypy_plugin'
python_version = '3.9'
warn_return_any = true
disallow_untyped_defs = true
disallow_untyped_calls = true
disallow_incomplete_defs = true
[[tool.mypy.overrides]]
module = [
"cv2",
"enlighten",
"matplotlib",
"matplotlib.colors",
"matplotlib.pyplot",
"matplotlib.tri",
"pandas",
"pdal",
"pyproj",
"pyproj.aoi",
"pyproj.crs",
"pyproj.database",
"pyproj.enums",
"pyproj.transformer",
"pythonjsonlogger",
"rasterio",
"rasterio.coords",
"rasterio.crs",
"rasterio.errors",
"rasterio.enums",
"rasterio.fill",
"rasterio.transform",
"rasterio.warp",
"rich",
"rich.console",
"rich.logging",
"rich.progress",
"scipy",
"scipy.sparse",
"scipy.spatial",
"shapefile",
"skimage",
"skimage.measure",
"trimesh",
"websocket",
]
ignore_missing_imports = true