diff --git a/.gitignore b/.gitignore index b326ee0..d2394e9 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ __pycache__/ .cache .idea .swp +PyBeacon.egg-info/ +dist/ diff --git a/PyBeacon/__init__.py b/PyBeacon/__init__.py index 6e1967f..77aebc8 100644 --- a/PyBeacon/__init__.py +++ b/PyBeacon/__init__.py @@ -1,7 +1,6 @@ """Module configuration.""" __title__ = 'PyBeacon' -__version__ = '0.2.7' +__version__ = '0.2.8' __build__ = 0x016 __author__ = 'Nirmankarta' -__license__ = 'Apache 2.0' -__copyright__ = 'Copyright 2016 Nirmankarta' +__license__ = 'GNU Affero General Public License v3 or later (AGPLv3+)' diff --git a/setup.py b/setup.py index 5dad99d..149e58c 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ download_url='https://github.com/nirmankarta/PyBeacon/archive/master.zip', author='Nirmankarta', author_email='we@nirmankarta.com', - license='Apache License 2.0', + license='GNU Affero General Public License v3 or later (AGPLv3+)', keywords=['Eddystone', 'Eddystone URL', 'Beacon', 'Raspberry Pi'], classifiers=[ 'Development Status :: 4 - Beta', @@ -35,7 +35,7 @@ 'Topic :: Software Development :: Libraries :: Python Modules', 'Natural Language :: English', 'Operating System :: POSIX :: Linux', - 'License :: OSI Approved :: Apache Software License', + 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7',