-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add setup.py, pyproject.toml and MANIFEST.in
- Loading branch information
1 parent
56dbd2a
commit ea143f9
Showing
4 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
graft gref4hsi | ||
include pyproject.toml | ||
include setup.py | ||
global-exclude *.py[cod] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools >= 42", | ||
"wheel", | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import pathlib | ||
import setuptools | ||
|
||
setuptools.setup( | ||
name='gref4hsi', | ||
version='0.1.1', | ||
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='[email protected]', | ||
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", | ||
"pyembree", | ||
"ephem" | ||
], | ||
|
||
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', | ||
], | ||
python_requires='>3.7,<3.9', | ||
packages=setuptools.find_packages(), | ||
include_package_data=True | ||
) |