Skip to content
Snippets Groups Projects
Verified Commit 2ae0c740 authored by David Hoese's avatar David Hoese
Browse files

Add GPLv3 license

parent 45769a3e
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -6,3 +6,4 @@ include sift/data/fonts/* ...@@ -6,3 +6,4 @@ include sift/data/fonts/*
include sift/data/colormaps/* include sift/data/colormaps/*
include sift/ui/*.ui include sift/ui/*.ui
include sift/ui/cursors/* include sift/ui/cursors/*
include LICENSE.txt
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This file is part of SIFT.
#
# SIFT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SIFT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with SIFT. If not, see <http://www.gnu.org/licenses/>.
"""Setuptools installation script for the SIFT python package. """Setuptools installation script for the SIFT python package.
To install from source run the following command:: To install from source run the following command::
...@@ -153,13 +167,21 @@ class BumpCommand(Command): ...@@ -153,13 +167,21 @@ class BumpCommand(Command):
print("To push git changes to remote, run:\n git push --follow-tags") print("To push git changes to remote, run:\n git push --follow-tags")
setup( setup(
name='sift', name='sift',
version=version_str, version=version_str,
description="Satellite Information Familiarization Tool for mercator geotiff files", description="Satellite Information Familiarization Tool",
author='R.K.Garcia, University of Wisconsin - Madison Space Science & Engineering Center', author='R.K.Garcia, University of Wisconsin - Madison Space Science & Engineering Center',
author_email='rkgarcia@wisc.edu', author_email='rkgarcia@wisc.edu',
url='https://www.ssec.wisc.edu/', url='https://gitlab.ssec.wisc.edu/SIFT/sift',
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 " +
"or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"],
zip_safe=False, zip_safe=False,
include_package_data=True, include_package_data=True,
install_requires=['numpy', 'pillow', 'scipy', 'numba', 'vispy>0.4.0', install_requires=['numpy', 'pillow', 'scipy', 'numba', 'vispy>0.4.0',
...@@ -167,6 +189,7 @@ setup( ...@@ -167,6 +189,7 @@ setup(
'pyshp', 'shapely', 'rasterio', 'goesr', 'sqlalchemy', 'pyshp', 'shapely', 'rasterio', 'goesr', 'sqlalchemy',
'goesr', 'appdirs', 'pyyaml', 'pyqtgraph', 'colormap', 'goesr', 'appdirs', 'pyyaml', 'pyqtgraph', 'colormap',
], ],
python_requires='>=3.6',
extras_require=extras_require, extras_require=extras_require,
packages=find_packages(), packages=find_packages(),
#entry_points={}, #entry_points={},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment