forked from avigan/SPHERE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (36 loc) · 1.27 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
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# setup
setup(
name='vlt-sphere',
version='1.7',
description='Reduction and analysis code for the VLT/SPHERE instrument',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/avigan/SPHERE',
author='Arthur Vigan',
author_email='arthur.vigan@lam.fr',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research ',
'Topic :: Scientific/Engineering :: Astronomy',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License'
],
keywords='vlt sphere ifs irdis reduction exoplanet pipeline',
packages=['sphere', 'sphere.utils', 'sphere.IRDIS'],
install_requires=[
'numpy', 'scipy', 'astropy', 'pandas', 'matplotlib'
],
include_package_data=True,
package_data={
'sphere': ['data/*.txt', 'data/*.dat', 'data/*.fits',
'instruments/*.ini', 'instruments/*.dat'],
},
zip_safe=False
)