-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (33 loc) · 1.18 KB
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
import pathlib
import setuptools
setuptools.setup(
name='rad4sea',
version='0.0.6',
description='A Python package for for radiometric transforms for hyperspectral seafloor/water column mapping',
long_description=pathlib.Path("README.md").read_text(),
long_description_content_type = "text/markdown",
url='https://github.com/havardlovas/rad4sea',
author='Haavard Snefjellaa Loevaas',
author_email='havard.s.lovas@ntnu.no',
license='EUPL-1.2',
install_requires=[
"py6s",
"spectral",
"tqdm",
"numpy",
],
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
)