Skip to content
Snippets Groups Projects
Commit 30b7bd48 authored by George Ge's avatar George Ge
Browse files

Merge branch 'george-fixes' into 'master'

Installation fixes

See merge request espace-dev/sen2chain!43
parents 735d9e23 b41374eb
No related branches found
No related tags found
No related merge requests found
Pipeline #15392 failed
matplotlib>=2.1.2
numpy>=1.11.0
rasterio~=1.3a1
Fiona>=1.7.10
Shapely>=1.6.4.post1
rasterstats>=0.12.1
sentinelhub>=2.0.3
sentinelsat>=0.12.2
pyproj>=1.9.5.1
typing>=3.6.6
pandas>=0.23.4
urllib3>=1.22
geopandas>=0.5.0
scipy
pillow
python-crontab
packaging
eodag>=2.10
eodag-sentinelsat
sphinx-math-dollar
sphinx-book-theme
myst-parser
matplotlib~=3.9.0
numpy~=1.26.4
rasterio~=1.3.10 # In 1.4 -> Warning 3: Cannot find header.dxf (GDAL_DATA is not defined)
fiona~=1.9.6
shapely~=2.0.4
rasterstats~=0.19.0
sentinelhub~=3.10.2
sentinelsat~=1.2.1
pyproj~=3.6.1
typing~=3.7.4
pandas~=2.2.2
urllib3~=2.2.2
geopandas~=0.14.4
scipy~=1.13.1
pillow~=10.3.0
python-crontab~=3.1.0
packaging~=24.1
eodag~=2.12.1
eodag-sentinelsat~=0.4.1
sphinx-book-theme~=1.1.3
sphinx-math-dollar~=1.2.1
myst-parser~=3.0.1
......@@ -7,7 +7,7 @@ here = path.abspath(path.dirname(__file__))
with open("sen2chain/__init__.py", encoding="utf-8") as f:
for line in f:
if line.startswith("__version__"):
version = line.split("=")[1].strip().strip("\"")
version = line.split("=")[1].strip().strip('"')
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
......@@ -38,7 +38,12 @@ setup(
keywords="GIS sentinel copernicus", # Optional
packages=find_packages(exclude=["dev", "example", "docs", "tests"]),
package_data={ # Optional
"sen2chain": ["data/tiles_index.gpkg", "data/tiles_index_dict.p", "data/sen2chain_info.xml"],
"sen2chain": [
"data/tiles_index.gpkg",
"data/tiles_index_dict.p",
"data/sen2chain_info.xml",
"data/job_ini.cfg",
],
},
install_requires=open("requirements.txt").read().splitlines(),
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment