-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (53 loc) · 1.55 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import pathlib
import setuptools
setuptools.setup(
name='gref4hsi',
version='0.2.6',
description='A Python package for for georeferencing and orthorectifying hyperspectral imagery',
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type = "text/markdown",
url='https://github.com/havardlovas/gref4hsi',
author='Haavard Snefjellaa Loevaas',
author_email='havard.s.lovas@gmail.no',
license='EUPL-1.2',
install_requires=[
"opencv-python",
"dill",
"geopandas",
"h5py",
"matplotlib",
"numpy",
"open3d",
"pandas",
"Pillow",
"pymap3d",
"pyproj",
"pyvista",
"pyvistaqt",
"scikit-learn",
"scipy",
"shapely",
"spectral",
"xmltodict",
"pykdtree",
"trimesh",
"rtree",
"embreex",
"ephem",
"pykrige"
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
python_requires='>3.7',
packages=setuptools.find_packages(),
include_package_data=True
)