-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (71 loc) · 1.79 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
[build-system]
requires = ['setuptools>=60', 'setuptools-scm>=8.0']
build-backend = 'setuptools.build_meta'
[project]
name = 's1_frame_enumerator'
requires-python = '>=3.11'
authors = [
{ name = 'Charlie Marshak, David Bekaert, Joseph Kennedy, Sim Sangha, and ACCESS Team ' },
]
description = 'Enumerate interferogram pairs from ARIA spatially fixed frames'
license = { text = 'Apache-2.0' }
classifiers = [
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dynamic = ['version', 'readme']
dependencies = [
'geopandas',
'rasterio',
'pandas',
'asf_search',
'tqdm',
'requests',
'rasterio',
'shapely>=2.0',
]
[project.optional-dependencies]
develop = [
'pytest',
'pytest-cov',
'flake8',
'flake8-import-order',
'flake8-blind-except',
'flake8-builtins',
]
[project.urls]
Homepage = 'https://github.com/ACCESS-Cloud-Based-InSAR/s1-frame-enumerator'
'Bug Tracker' = 'https://github.com/ACCESS-Cloud-Based-InSAR/s1-frame-enumerator/issues'
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ['src']
exclude = ['notebooks*', 'tests*']
[tool.setuptools.dynamic]
readme = { file = ['README.md'], content-type = 'text/markdown' }
[tool.setuptools_scm]
[tool.ruff]
line-length = 120
# Exclude a variety of commonly ignored directories.
exclude = [
'.eggs',
'.git',
'.ipynb_checkpoints',
'.mypy_cache',
'.pytest_cache',
'.ruff_cache',
'.vscode',
'__pypackages__',
'_build',
'build',
'dist',
'site-packages',
]
indent-width = 4
[tool.ruff.format]
quote-style = 'single'