Skip to content

Commit 372c4d6

Browse files
authored
pyproject.toml based install (#440)
* add information to pyproject.toml * remove old files * adjust makefile * fix CI after removal of setup.py * make black happy (super odd that it doesnt want this on develop?)
1 parent 67ae000 commit 372c4d6

12 files changed

+118
-167
lines changed

.github/workflows/ci_action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: pip install -e .[AWS,DEV]
5656

5757
- name: Run mypy
58-
run: mypy sentinelhub setup.py
58+
run: mypy sentinelhub
5959

6060
- name: Run pylint
6161
run: pylint sentinelhub

MANIFEST.in

-8
This file was deleted.

Makefile

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
11
# Makefile for creating a new release of the package and uploading it to PyPI
22

3-
PYTHON = python3
4-
CONFIG = sentinelhub.config
5-
63
help:
74
@echo "Use 'make upload' to upload the package to PyPi"
85

9-
reset-config:
10-
$(CONFIG) --reset
11-
126
upload:
137
rm -r dist | true
14-
$(PYTHON) setup.py sdist bdist_wheel
8+
python -m build --sdist --wheel
159
twine upload --skip-existing dist/*
1610

1711
# For testing:
1812
test-upload:
1913
rm -r dist | true
20-
$(PYTHON) setup.py sdist bdist_wheel
14+
python -m build --sdist --wheel
2115
twine upload --repository testpypi --skip-existing dist/*

pyproject.toml

+111-11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,109 @@
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+
1107
[tool.black]
2108
line-length = 120
3109
preview = true
@@ -21,7 +127,7 @@ disable = [
21127
"invalid-unary-operand-type",
22128
"unspecified-encoding",
23129
"unnecessary-ellipsis",
24-
"use-dict-literal"
130+
"use-dict-literal",
25131
]
26132

27133
[tool.pylint.design]
@@ -40,18 +146,14 @@ valid-metaclass-classmethod-first-arg = "mcs"
40146
markers = [
41147
"aws_integration: marks AWS integration tests.",
42148
"geopedia_integration: marks Geopedia integration tests.",
43-
"sh_integration: marks Sentinel Hub integration tests."
149+
"sh_integration: marks Sentinel Hub integration tests.",
44150
]
45151

46152
[tool.coverage.run]
47-
source = [
48-
"sentinelhub"
49-
]
153+
source = ["sentinelhub"]
50154

51155
[tool.coverage.report]
52-
omit = [
53-
".utmzones.geojson"
54-
]
156+
omit = [".utmzones.geojson"]
55157

56158
[tool.mypy]
57159
follow_imports = "normal"
@@ -68,6 +170,4 @@ strict_equality = true
68170
pretty = true
69171

70172
[tool.nbqa.addopts]
71-
flake8 = [
72-
"--extend-ignore=E402"
73-
]
173+
flake8 = ["--extend-ignore=E402"]

requirements-aws.txt

-2
This file was deleted.

requirements-dev.txt

-21
This file was deleted.

requirements-docs.txt

-7
This file was deleted.

requirements.txt

-17
This file was deleted.

sentinelhub/api/statistical.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(
2929
bbox: Optional[BBox] = None,
3030
geometry: Optional[Geometry] = None,
3131
calculations: Optional[JsonDict] = None,
32-
**kwargs: Any
32+
**kwargs: Any,
3333
):
3434
"""
3535
For details of certain parameters check the

sentinelhub/aws/request.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(
2929
bands: Union[None, str, List[str]] = None,
3030
metafiles: Union[None, str, List[str]] = None,
3131
safe_format: bool = False,
32-
**kwargs: Any
32+
**kwargs: Any,
3333
):
3434
"""
3535
:param bands: List of Sentinel-2 bands for request. If `None` all bands will be obtained
@@ -107,7 +107,7 @@ def __init__(
107107
tile: Optional[str] = None,
108108
time: Optional[str] = None,
109109
aws_index: Optional[int] = None,
110-
**kwargs: Any
110+
**kwargs: Any,
111111
):
112112
"""
113113
:param data_collection: A collection of requested AWS data. Supported collections are Sentinel-2 L1C and

sentinelhub/time_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def parse_time(
3131
*,
3232
force_datetime: Literal[False] = False,
3333
allow_undefined: Literal[False] = False,
34-
**kwargs: Any
34+
**kwargs: Any,
3535
) -> dt.date:
3636
...
3737

setup.py

-88
This file was deleted.

0 commit comments

Comments
 (0)