1
+ [build-system ]
2
+ requires = [' hatchling' ]
3
+ build-backend = ' hatchling.build'
4
+
5
+ [tool .hatch .version ]
6
+ path = ' sentinelhub/_version.py'
7
+
8
+ [tool .hatch .build .targets .sdist ]
9
+ include = [' /README.md' , ' /LICENSE.md' , ' /sentinelhub' ]
10
+
11
+ [project ]
12
+ name = " sentinelhub"
13
+ dynamic = [" version" ]
14
+ description = " Python API for Sentinel Hub"
15
+ readme = " README.md"
16
+ requires-python = " >= 3.8"
17
+ license = { file = " LICENSE.md" }
18
+ authors = [
19
+ {
name =
" Sinergise EO research team" ,
email =
" [email protected] " },
20
+ ]
21
+ classifiers = [
22
+ " Development Status :: 5 - Production/Stable" ,
23
+ " Intended Audience :: Developers" ,
24
+ " Intended Audience :: Education" ,
25
+ " Intended Audience :: Science/Research" ,
26
+ " License :: OSI Approved :: MIT License" ,
27
+ " Operating System :: MacOS" ,
28
+ " Operating System :: Microsoft :: Windows" ,
29
+ " Operating System :: Unix" ,
30
+ " Programming Language :: Python" ,
31
+ " Programming Language :: Python :: 3" ,
32
+ " Programming Language :: Python :: 3.8" ,
33
+ " Programming Language :: Python :: 3.9" ,
34
+ " Programming Language :: Python :: 3.10" ,
35
+ " Topic :: Scientific/Engineering" ,
36
+ " Topic :: Software Development" ,
37
+ ]
38
+ dependencies = [
39
+ " aenum>=2.1.4" ,
40
+ " click" ,
41
+ " dataclasses-json" ,
42
+ " numpy" ,
43
+ " oauthlib" ,
44
+ " pillow>=9.2.0" ,
45
+ " pyproj>=2.2.0" ,
46
+ " python-dateutil" ,
47
+ " requests>=2.27.0" ,
48
+ " requests-oauthlib>=1.0.0" ,
49
+ " shapely" ,
50
+ " tifffile>=2020.9.30" ,
51
+ " tomli" ,
52
+ " tomli_w" ,
53
+ " tqdm" ,
54
+ " typing-extensions" ,
55
+ " utm" ,
56
+ ]
57
+
58
+ [project .optional-dependencies ]
59
+ docs = [
60
+ " docutils" ,
61
+ " ipython" ,
62
+ " matplotlib" ,
63
+ " nbsphinx" ,
64
+ " sphinx" ,
65
+ " sphinx_mdinclude" ,
66
+ " sphinx_rtd_theme" ,
67
+ ]
68
+ dev = [
69
+ " basemap" ,
70
+ " boto3-stubs>=1.20.0" ,
71
+ " build" ,
72
+ " click>=8.0.0" ,
73
+ " codecov" ,
74
+ " fs" ,
75
+ " mypy>=0.990" ,
76
+ " moto" ,
77
+ " pandas" ,
78
+ " pre-commit" ,
79
+ " pylint>=2.14.0" ,
80
+ " pytest>=4.0.0" ,
81
+ " pytest-cov" ,
82
+ " pytest-dependency" ,
83
+ " pytest-lazy-fixture" ,
84
+ " pytest-mock" ,
85
+ " ray[default]" ,
86
+ " requests-mock" ,
87
+ " twine" ,
88
+ " types-python-dateutil" ,
89
+ " types-requests" ,
90
+ " types-urllib3" ,
91
+ ]
92
+ aws = [" boto3" , " botocore" ]
93
+
94
+ [project .urls ]
95
+ Homepage = " https://github.com/sentinel-hub/sentinelhub-py"
96
+ Documentation = " https://sentinelhub-py.readthedocs.io"
97
+ Issues = " https://github.com/sentinel-hub/sentinelhub-py/issues"
98
+ Source = " https://github.com/sentinel-hub/sentinelhub-py"
99
+ Forum = " https://forum.sentinel-hub.com"
100
+
101
+ [project .scripts ]
102
+ "sentinelhub" = " sentinelhub.commands:main_help"
103
+ "sentinelhub.aws" = " sentinelhub.aws.commands:aws"
104
+ "sentinelhub.config" = " sentinelhub.commands:config"
105
+ "sentinelhub.download" = " sentinelhub.commands:download"
106
+
1
107
[tool .black ]
2
108
line-length = 120
3
109
preview = true
@@ -21,7 +127,7 @@ disable = [
21
127
" invalid-unary-operand-type" ,
22
128
" unspecified-encoding" ,
23
129
" unnecessary-ellipsis" ,
24
- " use-dict-literal"
130
+ " use-dict-literal" ,
25
131
]
26
132
27
133
[tool .pylint .design ]
@@ -40,18 +146,14 @@ valid-metaclass-classmethod-first-arg = "mcs"
40
146
markers = [
41
147
" aws_integration: marks AWS integration tests." ,
42
148
" geopedia_integration: marks Geopedia integration tests." ,
43
- " sh_integration: marks Sentinel Hub integration tests."
149
+ " sh_integration: marks Sentinel Hub integration tests." ,
44
150
]
45
151
46
152
[tool .coverage .run ]
47
- source = [
48
- " sentinelhub"
49
- ]
153
+ source = [" sentinelhub" ]
50
154
51
155
[tool .coverage .report ]
52
- omit = [
53
- " .utmzones.geojson"
54
- ]
156
+ omit = [" .utmzones.geojson" ]
55
157
56
158
[tool .mypy ]
57
159
follow_imports = " normal"
@@ -68,6 +170,4 @@ strict_equality = true
68
170
pretty = true
69
171
70
172
[tool .nbqa .addopts ]
71
- flake8 = [
72
- " --extend-ignore=E402"
73
- ]
173
+ flake8 = [" --extend-ignore=E402" ]
0 commit comments