Updating per @brianmay correspondence in https://github.com/sshuttle/sshuttle/issues/186

This commit is contained in:
Henri Yandell 2017-11-15 17:14:11 -08:00 committed by Brian May
parent 817284c2f8
commit 81ab587698

View File

@ -2,20 +2,20 @@
# Copyright 2012-2014 Brian May # Copyright 2012-2014 Brian May
# #
# This file is part of python-tldap. # This file is part of sshuttle.
# #
# python-tldap is free software: you can redistribute it and/or modify # sshuttle is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU Lesser General Public License as
# the Free Software Foundation, either version 3 of the License, or # published by the Free Software Foundation; either version 2.1 of
# (at your option) any later version. # the License, or (at your option) any later version.
# #
# python-tldap is distributed in the hope that it will be useful, # sshuttle is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU Lesser General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU Lesser General Public License
# along with python-tldap If not, see <http://www.gnu.org/licenses/>. # along with sshuttle; If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages from setuptools import setup, find_packages
@ -39,14 +39,14 @@ setup(
author_email='brian@linuxpenguins.xyz', author_email='brian@linuxpenguins.xyz',
description='Full-featured" VPN over an SSH tunnel', description='Full-featured" VPN over an SSH tunnel',
packages=find_packages(), packages=find_packages(),
license="GPL2+", license="LGPL2.1+",
long_description=open('README.rst').read(), long_description=open('README.rst').read(),
classifiers=[ classifiers=[
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers", "Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop", "Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: " "License :: OSI Approved :: "
"GNU General Public License v2 or later (GPLv2+)", "GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",