-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
39 lines (37 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import sys
import os
try: from setuptools import setup
except ImportError: from distutils.core import setup
import versioneer
URL = 'https://github.com/kadrlica/skymap'
setup(
name='skymap',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url=URL,
author='Alex Drlica-Wagner',
author_email='[email protected]',
scripts = [],
install_requires=[
'matplotlib',
'numpy',
'scipy',
'basemap',
'ephem',
'healpy > 1.10.2', # This is required for `lonlat` argument
'astropy',
'pandas',
],
packages=['skymap','skymap.instrument'],
package_data={'skymap':['data/*.txt','data/*.dat']},
description="Python tools for making skymaps",
long_description="See %s"%URL,
platforms='any',
keywords='python astronomy plotting',
classifiers = [
'Programming Language :: Python',
'Development Status :: 2 - Pre-Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
]
)