-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 867 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
import setuptools
setup(name='pywise',
version='0.1.0',
author="Na'ama Hallakoun",
author_email='naama@wise.tau.ac.il',
description='Image reduction pipeline for the Wise Observatory',
long_description=open('README.md').read(),
url='https://github.com/naamach/pywise',
license='LICENSE.txt',
packages=setuptools.find_packages(),
install_requires=['astropy', 'configparser', 'ccdproc', 'numpy'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Astronomy'],
scripts=['bin/wise_reduce']
)