-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
60 lines (52 loc) · 1.68 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
[project]
name = 'orthority'
description = 'Orthorectification of drone, aerial and satellite imagery.'
readme = 'README.rst'
requires-python = '>=3.9'
dependencies = [
'rasterio>=1.3.6',
'opencv-python-headless>=4.8',
'pyyaml>=5',
'click>=8',
'tqdm>=4',
'fsspec>=2023.12'
]
authors = [{name = 'Leftfield Geospatial'}]
license = {text = 'AGPL-3.0-or-later'}
keywords = [
'orthorectify', 'orthorectification', 'georeference', 'uav', 'drone', 'aerial', 'satellite',
'exif', 'xmp', 'image', 'rpc',
]
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
]
dynamic = ['version']
[project.scripts]
oty = 'orthority.cli:cli'
simple-ortho = 'orthority.cli:simple_ortho'
[project.optional-dependencies]
http = ['requests', 'aiohttp']
tests = ['pytest', 'requests', 'aiohttp']
docs = ['sphinx', 'furo', 'sphinx-click', 'sphinx-argparse', 'sphinx-copybutton']
[project.urls]
Homepage = 'https://github.com/leftfield-geospatial/orthority'
Documentation = "https://orthority.readthedocs.org"
Source = 'https://github.com/leftfield-geospatial/orthority'
Changelog = 'https://github.com/leftfield-geospatial/orthority/releases'
Issues = 'https://github.com/leftfield-geospatial/orthority/issues'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['orthority']
[tool.setuptools.dynamic]
version = {attr = 'orthority.version.__version__'}
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.ruff]
line-length = 100
lint = { extend-select = ['I'] }
format = { quote-style = 'preserve' }