Skip to content

Commit

Permalink
Merge pull request #87 from sot/chandra_aca
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 ae791f0 + 8d7bd87 commit c044db7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 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: 3 additions & 1 deletion chandra_aca/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from .transform import * # noqa

__version__ = '4.28'
import ska_helpers

__version__ = ska_helpers.get_version(__package__)


def test(*args, **kwargs):
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from chandra_aca import __version__

from setuptools import setup

try:
Expand All @@ -12,7 +10,8 @@
author='Jean Connelly, Tom Aldcroft',
description='Chandra Aspect Camera Tools',
author_email='[email protected]',
version=__version__,
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
zip_safe=False,
packages=['chandra_aca', 'chandra_aca.tests'],
package_data={'chandra_aca.tests': ['data/*.txt', 'data/*.dat',
Expand Down

0 comments on commit c044db7

Please sign in to comment.