Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0 #23

Merged
merged 5 commits into from
Jul 7, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ppb_vector/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

__all__ = ('Vector',)

__version__ = "1.0"
AstraLuma marked this conversation as resolved.
Show resolved Hide resolved


# Anything convertable to a Vector, including lists, tuples, and dicts
VectorLike = typing.Union[
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = ppb-vector
version = 1.0a2
version = 1.0
author = Piper Thunstrom
author_email = pathunstrom@gmail.com
description = A basic game development Vector class.
Expand All @@ -9,8 +9,9 @@ long_description_content_type = text/markdown
url = https://github.com/ppb/ppb-vector
license = Artistic-2.0
classifiers =
Development Status :: 4 - Beta
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
Expand Down