-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.14 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.14 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
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-utils',
version='1.2.0',
author = "Simon Donike, Cesar Aybar, Luis Gomez Chova, Freddie Kalaitzis",
author_email = "accounts@donike.net",
description = "Utilities supporting the ESA opensr-model package for Super-Resolution of Senintel-2 Imagery",
url = "https://opensr.eu/",
project_urls={'Source Code': 'https://github.com/ESAopenSR/opensr-utils'},
license='MIT',
packages=find_packages(include=["opensr_utils", "opensr_utils.*"]),
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'numpy',
'einops',
'rasterio',
'tqdm',
'torch',
'scikit-image',
'torchvision',
'pytorch-lightning',
'xarray',
'matplotlib',
'omegaconf',
'requests',
],
entry_points={
"console_scripts": [
"opensr-run=opensr_utils.cli:main",
],
},
)