forked from tychon/mascado
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 772 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
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='MASCADO',
version='1.0',
description='Inspection tool for Mask Astrometry data '
'from the MICADO project.',
author='Hannes Riechert',
author_email='hannes@tychons.net',
python_requires='>=3.5',
url='https://github.com/tychon/mascado',
license='GPLv3',
packages=find_packages(exclude=['tests.*', 'tests']),
install_requires=[
'importlib-resources',
'numpy>=1.14',
'matplotlib',
'scipy',
'pandas'],
scripts=[
'scripts/mascado_analyze',
'scripts/mascado_compare'],
package_data={'mascado': ['resources/example_input/*']},
test_suite='tests',
)