-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
067071b
commit 503b732
Showing
3 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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='[email protected]', | ||
url='https://github.com/openlunar/pyquat/', | ||
download_url='https://github.com/mohawkjohn/pyquat/archive/v' + version + '.tar.gz', | ||
author='Juno Woods, Ph.D.', | ||
author_email='[email protected]', | ||
url='https://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', | ||
|