forked from indiajoe/HxRGproc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.15 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='HxRGproc',
version='0.3',
description='Python Tool for Processing HxRG detector data',
long_description = readme(),
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Astronomy',
],
keywords='H2RG HxRG NIR Astronomy Data Reduction',
url='https://github.com/indiajoe/HxRGproc',
author='Joe Ninan',
author_email='indiajoe@gmail.com',
license='LGPLv3+',
packages=['HxRGproc','HxRGproc.reduction','HxRGproc.simulator'],
entry_points = {
'console_scripts': ['generate_slope_images=HxRGproc.reduction.generate_slope_images:main',
'generate_cds_images=HxRGproc.reduction.generate_cds_images:main'],
},
install_requires=[
'numpy',
'scipy',
'astropy',
],
include_package_data=True,
zip_safe=False)