forked from fmartinache/xara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 860 Bytes
/
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
import sys
from setuptools import setup
setup(name='xara',
version='1.3.0', # defined in the __init__ module
description='Package for eXtreme Angular Resolution Astronomy',
url='http://github.com/fmartinache/xara',
author='Frantz Martinache',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Professional Astronomers',
'Topic :: High Angular Resolution Astronomy :: Interferometry',
'Programming Language :: Python :: 3.6'
],
packages=['xara'],
install_requires=[
'numpy', 'scipy', 'matplotlib', 'astropy'
],
scripts=["bin/ker_model_builder"],
data_files=[('config', ['config/discretizor.ui'])],
include_package_data=True,
zip_safe=False)