forked from sentinel-hub/eo-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 loc) · 1.05 KB
/
setup.py
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
import os
from setuptools import setup
def get_long_description():
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
return long_description
setup(name='eo-learn',
python_requires='>=3.5,<3.7',
version='0.3.3',
description='Earth observation processing framework for machine learning in Python',
long_description=get_long_description(),
long_description_content_type='text/markdown',
url='https://github.com/sentinel-hub/eo-learn',
author='Sinergise EO research team',
author_email='[email protected]',
license='MIT',
packages=[],
include_package_data=True,
install_requires=[
'eo-learn-core>=0.3.2',
'eo-learn-coregistration>=0.3.2',
'eo-learn-features>=0.3.3',
'eo-learn-geometry>=0.3.3',
'eo-learn-io>=0.3.3',
'eo-learn-mask>=0.3.2',
'eo-learn-ml-tools>=0.3.2'
],
zip_safe=False)