diff options
author | sienkiew <sienkiew@stsci.edu> | 2014-03-25 10:53:08 -0400 |
---|---|---|
committer | sienkiew <sienkiew@stsci.edu> | 2014-03-25 10:53:08 -0400 |
commit | 5d00dcb1a0123389d9759698a5c42828e17af9bc (patch) | |
tree | ecef07881ea7b6b661ee5f59847b00dafecf3409 /setup.cfg | |
parent | 64be292044c4428b5908acf5cc2dda6693ed1afb (diff) | |
download | stsci.sphere-5d00dcb1a0123389d9759698a5c42828e17af9bc.tar.gz |
mod for d2to1 install
git-svn-id: http://svn.stsci.edu/svn/ssb/stsci_python/stsci.sphere/trunk@30670 fe389314-cf27-0410-b35b-8c050e845b92
Former-commit-id: 91667828b7e01b5aae55679093564473a976e8a9
Diffstat (limited to 'setup.cfg')
-rwxr-xr-x | setup.cfg | 36 |
1 files changed, 36 insertions, 0 deletions
@@ -1,3 +1,39 @@ [metadata] name = sphere version = 0.1 +author = Michael Droettboom +author-email = help@stsci.edu +summary = Python based tools for spherical geometry +home-page = http://www.stsci.edu/resources/software_hardware/stsci_python +classifier = + Intended Audience :: Science/Research + License :: OSI Approved :: BSD License + Operating System :: OS Independent + Programming Language :: Python + Topic :: Scientific/Engineering :: Astronomy + Topic :: Software Development :: Libraries :: Python Modules +requires-python = >=2.6 + +[files] +packages = + stsci + stsci.sphere + stsci.sphere.test +package_data = + stsci.sphere.test = data/* + +[build_ext] +pre-hook.numpy-extension-hook = stsci.distutils.hooks.numpy_extension_hook + +[extension=stsci.sphere.math_util] +sources = src/math_util.c +define_macros = + NUMPY = 1 +include_dirs = numpy + +[global] +setup_hooks = + stsci.distutils.hooks.use_packages_root + stsci.distutils.hooks.tag_svn_revision + stsci.distutils.hooks.version_setup_hook + |