-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 1.89 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
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
[build-system]
requires = ['setuptools>=60', 'setuptools-scm>=8.0']
build-backend = 'setuptools.build_meta'
[project]
name = 'tile-mate'
requires-python = '>=3.9'
authors = [
{ name = 'Alexander Handwerger, Charlie Marshak, and OPERA Project Science Team' },
]
description = 'Create rasters from global tiles'
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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
dynamic = ['version', 'readme']
dependencies = [
"boto3",
"rasterio",
"tqdm",
"geopandas",
"matplotlib",
"numpy",
"pandas",
"pandera",
"shapely",
"dem-stitcher>=2.5.4",
]
[project.optional-dependencies]
develop = [
"pytest",
"pytest-cov",
"flake8",
"flake8-import-order",
"flake8-blind-except",
"flake8-builtins",
]
[project.urls]
Homepage = "https://github.com/OPERA-Cal-Val/tile-mate"
"Bug Tracker" = "https://github.com/OPERA-Cal-Val/tile-mate/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",
"notebooks/"
]
indent-width = 4
[tool.ruff.format]
quote-style = "single"