-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
83 lines (74 loc) · 2.07 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 = [
"wheel",
"setuptools >= 52.0.0",
"oldest-supported-numpy",
"setuptools_scm[toml]>=5.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "kite"
requires-python = ">=3.7"
license = { text = "GPLv3" }
dynamic = ["version"]
description = "InSAR unwrapped surface displacement processing for earthquake modelling."
readme = "README.md"
authors = [
{ name = "Marius Paul Isken", email = "mi@gfz-potsdam.de" },
{ name = "Henriette Sudhaus", email = "hsudhaus@ifg.uni-kiel.de" },
]
maintainers = [{ name = "Marius Paul Isken", email = "mi@gfz-potsdam.de" }]
keywords = ["InSAR", "satellite", "radar", "earthquake", "optimization"]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: Image Recognition",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3.7",
"Programming Language :: C",
"Operating System :: POSIX",
"Operating System :: MacOS",
]
dependencies = [
"numpy>=1.17.3",
"scipy>=1.6.0",
"PyQt5>=5.15.0",
"pyqtgraph>=0.11.0",
"pyrocko>=2022.06.10",
"utm>=0.7.0",
"geojson>=2.5.0",
]
[project.urls]
Home = "https://pyrocko.org"
GitHub = "https://github.com/pyrocko/kite"
Issues = "https://github.com/pyrocko/kite/issues"
[project.optional-dependencies]
gdal = ["gdal>=3.2.0"]
development = ["flake8", "black", "pre-commit"]
tests = ["pytest"]
[project.scripts]
stamps2kite = "kite.util.stamps2kite:main"
bbd2kite = "kite.util.bbd2kite:main"
[project.gui-scripts]
spool = "kite.spool.__main__:main"
talpa = "kite.talpa.__main__:main"
[tool.setuptools]
packages = [
"kite",
"kite.util",
"kite.sources",
"kite.spool",
"kite.spool.res",
"kite.talpa",
"kite.talpa.res",
"kite.talpa.sources",
]
[tool.setuptools.package-data]
"kite.spool.res" = ["*.ui", "*.jpg", "*.png"]
"kite.talpa.res" = ["*.ui", "*.jpg", "*.png"]
[tool.setuptools_scm]
[tool.ruff]
select = ["E", "F", "I"]
exclude = ["docs/**.py"]