-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
47 lines (43 loc) · 2.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="hylite",
version="1.33",
author="Helmholtz Institute Freiberg",
author_email="[email protected]",
description="Open-source toolbox for hyperspectral geology.",
long_description="A python package for loading, correcting, projecting and analysing hyperspectral datasets, with particular emphasis on geological applications.",
long_description_content_type="text/markdown",
url="https://github.com/samthiele/hylite",
#package_dir={'': 'hylite'},
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering"
],
keywords='hyperspectral data analysis hypercloud geology mineral mapping',
python_requires='>=3.6',
install_requires=["scipy>=1.4", "matplotlib>=3", "numpy",
"imageio","opencv-python>=4.5", "opencv-contrib-python>=4.5",
"scikit-image", "tqdm", "roipoly", "spectral", "utm","pytz",
"laspy","plyfile","astral","piexif","gfit","numba","natsort"],
# List additional URLs that are relevant to your project as a dict.
#
# This field corresponds to the "Project-URL" metadata fields:
# https://packaging.python.org/specifications/core-metadata/#project-url-multiple-use
#
# Examples listed include a pattern for specifying where the package tracks
# issues, where the source is hosted, where to say thanks to the package
# maintainers, and where to support the project financially. The key is
# what's used to render the link text on PyPI.
project_urls={ # Optional
'Source': 'https://github.com/samthiele/hylite',
'Documentation' : 'https://hifexplo.github.io/hylite/hylite.html',
},
package_data={"": ["*.txt","*.hdr","*.cal","*.dat"] }
)