Skip to content

Commit

Permalink
Merge pull request #6 from sot/Ska.quatutil
Browse files Browse the repository at this point in the history
Implementation of setuptools_scm usage as described in sot/skare3/issues/240
  • Loading branch information
javierggt authored Jan 9, 2020
2 parents 063fdcc + 1c0b868 commit 7f3a09a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .git_archival.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ref-names: $Format:%D$
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.git_archival.txt export-subst
4 changes: 4 additions & 0 deletions Ska/quatutil/quatutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
from numpy import sin, cos, tan, arctan2, radians, degrees, sqrt
from Quaternion import Quat

import ska_helpers

__version__ = ska_helpers.get_version(__package__)


def radec2eci(ra, dec):
"""
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from setuptools import setup

from Ska.quatutil import __version__

try:
from testr.setup_helper import cmdclass
except ImportError:
Expand All @@ -13,7 +11,8 @@
description='ACA quaternion utilities',
author_email='taldcroft@cfa.harvard.edu',
url='http://cxc.harvard.edu/mta/ASPECT/tool_doc/pydocs/Ska.quatutil.html',
version=__version__,
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
zip_safe=False,
packages=['Ska', 'Ska.quatutil', 'Ska.quatutil.tests'],
tests_require=['pytest'],
Expand Down

0 comments on commit 7f3a09a

Please sign in to comment.