-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (24 loc) · 931 Bytes
/
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
## author: xin luo
## creat: 2023.9.1
## des: setting for the python package
from setuptools import setup
from setuptools import find_packages
VERSION = '1.1.1'
setup(
name='pyrsimg', # package name
version=VERSION, # package version
description='Python toolkit for easy processing of satellite image', # package description
author='The pyrsimg developers',
author_email='[email protected]',
maintainer='Xin Luo',
maintainer_email='[email protected]',
license='GPL License',
packages=find_packages(),
install_requires=['scikit-learn',
'numpy',
'opencv-python',
'matplotlib',
'scipy',
'astropy'], ## the user should install gdal by theirself.
python_requires='>=3.8', ## Minimum version requirement of the package
)