-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (24 loc) · 894 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(name='applesoss',
version='2.1.0',
license='MIT',
author='Michael Radica',
author_email='michael.radica@umontreal.ca',
packages=['applesoss'],
include_package_data=True,
url='https://github.com/radicamc/APPLESOSS',
description='A Producer of ProfiLEs for SOSS',
package_data={'': ['README.md', 'LICENSE']},
install_requires=['astropy', 'astroquery', 'matplotlib', 'numpy',
'scipy'],
extras_require={'webbpsf': ['applesoss', 'webbpsf>=1.1.1']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.10',
],
)