diff --git a/LICENSE.txt b/LICENSE.txt index 5fcb090..8953869 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright 2016--2017 John O. Woods, Ph.D., and Intuitive Machines +Copyright 2016--2022 Juno Woods, Ph.D., and Translunar LLC Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are diff --git a/README.md b/README.md index 553d150..3804737 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,6 @@ pyquat is a Python C extension providing quaternions and functions relating to s ## License -Copyright 2016--2017 John O. Woods, Ph.D., and Intuitive Machines. +Copyright 2016--2022 Juno Woods, Ph.D., and Translunar LLC. See LICENSE.txt. \ No newline at end of file diff --git a/setup.py b/setup.py index cc0075e..7d10f5a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python """ Python C quaternion type for fast attitude and rotation computations. See: -https://github.com/mohawkjohn/pyquat +https://github.com/translunar/pyquat """ from setuptools import setup, find_packages @@ -24,10 +24,10 @@ setup(name='pyquat', version=version, description='Python C quaternion type for fast attitude and rotation computations', - author='John O. Woods, Ph.D.', - author_email='john@openlunar.org', - url='http://github.com/openlunar/pyquat/', - download_url='https://github.com/mohawkjohn/pyquat/archive/v' + version + '.tar.gz', + author='Juno Woods, Ph.D.', + author_email='juno@translunar.io', + url='http://github.com/translunar/pyquat/', + download_url='https://github.com/translunar/pyquat/archive/v' + version + '.tar.gz', include_package_data=True, packages=['pyquat', 'pyquat.wahba'], ext_modules=[c_quat], @@ -57,7 +57,6 @@ # that you indicate whether you support Python 2, Python 3 or both. 'Programming Language :: C', - 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5',