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

Use setuptools_scm for single-source version #7

Merged
merged 3 commits into from
Jan 9, 2020
Merged
Show file tree
Hide file tree
Changes from all 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
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
3 changes: 2 additions & 1 deletion Ska/Sun.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
from math import cos, sin, acos, atan2, asin, pi, radians, degrees, ceil
import numpy as np
import Ska.quatutil
import ska_helpers

__version__ = '3.5'
__version__ = ska_helpers.get_version(__package__)


# The position() method is a modification of
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
from setuptools import setup

from Ska.Sun import __version__

setup(name='Ska.Sun',
author = 'Jean Connelly',
description='Sun position calculator',
author_email = 'jeanconn@head.cfa.harvard.edu',
py_modules = ['Ska.Sun'],
version=__version__,
use_scm_version=True,
setup_requires=['setuptools_scm', 'setuptools_scm_git_archive'],
zip_safe=False,
packages=['Ska'],
package_dir={'Ska' : 'Ska'},
Expand Down