-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 811 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
30
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description =f.read()
setup(
name='MoonIndex',
version='2.0.4',
packages=find_packages(),
long_description=long_description,
long_description_content_type='text/markdown',
author='Javier Suarez',
author_email='[email protected]',
license='GPL',
install_requires=['astropy>=5.3.4'
, 'jmespath>=1.0.1'
, 'matplotlib>=3.8.0'
, 'numpy>=1.26.1'
, 'opencv-python>=4.8.1.78'
, 'pysptools>=0.15.0'
, 'python-dateutil>=2.8.2'
, 'rasterio>=1.3.9'
, 'rioxarray>=0.15.0'
, 'scikit-learn>=1.3.2'
, 'scipy>=1.11.3'
, 'specutils>=1.12.0'
, 'xarray>=2023.10.1'
],
python_requires='>=3.10'
)