forked from rlaugier/SCIFYsim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 889 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
from setuptools import setup
setup(name='scifysim',
version='0.2.4', # defined in the __init__ module
description='A python tool for simulating high contrast interferometric observations from the ground or in space.',
url='--',
author='Romain Laugier',
author_email='romain.laugier@kuleuven.be',
license='',
classifiers=[
'Development Status :: 3 - pre-Alpha',
'Intended Audience :: Professional Astronomers',
'Topic :: High Angular Resolution Astronomy :: Interferometry',
'Programming Language :: Python :: 3.7'
],
packages=['scifysim'],
install_requires=[
'numpy', 'sympy', 'scipy', 'matplotlib', 'astropy','tqdm', 'astroplan', 'kernuller', 'lmfit', 'numexpr', 'astroquery', 'einops', 'dask', 'zarr'
],
include_package_data=True,
zip_safe=False)