-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.38 KB
/
setup.py
File metadata and controls
50 lines (48 loc) · 1.38 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
from setuptools import setup, find_packages
# read the contents of README file
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='opensr-model',
version='1.1.0',
author = "Simon Donike, Cesar Aybar, Luis Gomez Chova, Freddie Kalaitzis",
author_email = "accounts@donike.net",
description = "ESA OpenSR Diffusion model package for Super-Resolution of Senintel-2 Imagery",
url = "https://opensr.eu",
project_urls={'Source Code': 'https://github.com/ESAopenSR/opensr-model'},
license='MIT',
python_requires='>=3.12',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'numpy>=1.26.0',
'einops>=0.7.0',
'rasterio>=1.4.0',
'tqdm>=4.66.0',
'torch>=2.2.0',
'scikit-image>=0.22.0',
'pytorch-lightning>=2.2.0',
'requests>=2.31.0',
'omegaconf>=2.3.0',
'matplotlib>=3.8.0'],
extras_require={
'hpc': [
'PyYAML>=6.0',
'pyproj>=3.4',
'pyshp>=2.3.1',
'rioxarray>=0.15',
'shapely>=2.0.2',
'cubo>=0.3',
'opensr-utils>=1.0.0',
],
},
entry_points={
'console_scripts': [
'opensr-hpc=deployment.opensr_hpc.cli:main',
],
},
package_data={
'deployment.opensr_hpc': ['slurm/*.sh'],
},
)