From 04ddfd6b69e601bcd29baae7f6c12dad9012976d Mon Sep 17 00:00:00 2001 From: Piper Thunstrom Date: Thu, 12 Oct 2017 20:32:45 -0400 Subject: [PATCH 1/3] Adds __version__ to __init__ --- ppb_vector/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ppb_vector/__init__.py b/ppb_vector/__init__.py index dc9b5b0e..33fad2ae 100644 --- a/ppb_vector/__init__.py +++ b/ppb_vector/__init__.py @@ -1 +1,3 @@ from ppb_vector.vector2 import Vector2 # noqa + +__version__ = "1.0" From d26eda9202330c0ac56e401d52c72e2f98dc24e7 Mon Sep 17 00:00:00 2001 From: Piper Thunstrom Date: Thu, 12 Oct 2017 20:33:03 -0400 Subject: [PATCH 2/3] Updates setup.py to ready for 1.0 release. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 21b0156d..44f85d51 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): setup( name='ppb-vector', - version='0.4.0rc1', + version='1.0', packages=['ppb_vector'], url='http://github.com/pathunstrom/ppb-vector', license='', @@ -21,7 +21,7 @@ def readme(): long_description=readme(), long_description_content_type="text/markdown", classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Topic :: Software Development :: Libraries', 'Topic :: Scientific/Engineering :: Mathematics', From a2434537d456f2a4be1cee80fa220652045232aa Mon Sep 17 00:00:00 2001 From: Nicolas Braud-Santoni Date: Sun, 24 Mar 2019 00:14:31 +0100 Subject: [PATCH 3/3] setup.py: Add license metadata Accidentally removed while rebasing Piper's release branch --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 44f85d51..8bbcb91c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def readme(): version='1.0', packages=['ppb_vector'], url='http://github.com/pathunstrom/ppb-vector', - license='', + license='Artistic', author='Piper Thunstrom', author_email='pathunstrom@gmail.com', description='A basic game development Vector2 class.', @@ -23,6 +23,7 @@ def readme(): classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', + 'License :: OSI Approved :: Artistic License' 'Topic :: Software Development :: Libraries', 'Topic :: Scientific/Engineering :: Mathematics', 'Programming Language :: Python :: 3',