-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.22 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
[project]
name = 'plan-rect'
description = 'Rectify oblique images to a plane'
readme = 'README.md'
requires-python = '>=3.9'
dependencies = ['orthority>=0.6.0']
authors = [
{ name = 'Leftfield Geospatial', email = 'info@leftfield.online' }
]
license = { text = 'AGPL-3.0-or-later' }
keywords = ['planar', 'orthorectification']
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]
plan-rect = 'plan_rect.cli:cli'
[project.optional-dependencies]
tests = ['pytest']
[project.urls]
Homepage = 'https://github.com/leftfield-geospatial/plan-rect'
Source = 'https://github.com/leftfield-geospatial/plan-rect'
[build-system]
requires = ['setuptools>=61']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['plan_rect']
[tool.setuptools.dynamic]
version = { attr = 'plan_rect.version.__version__' }
[tool.ruff]
line-length = 88
format = { quote-style = 'single' }
[tool.ruff.lint]
select = [
'B', # flake8-bugbear
'E', # pycodestyle error
'F', # pyflakes
'I', # isort
'UP', # pyupgrade
'W', # pycodestyle warning
'RUF'
]