-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (41 loc) · 1.25 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
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import division, print_function
import os
import sys
from setuptools import setup
sys.path.insert(0, "src/nirhiss")
from version import __version__
long_description = \
"""
nirHiss is a python package to reduce JWST NIRISS observations.
Read the documentation at https://adina.feinste.in/nirHiss
Changes to v0.0.1rc1 (2022-08-06):
*
"""
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='nirhiss',
version=__version__,
license='MIT',
author='Adina D. Feinstein',
author_email='adina.d.feinstein@gmail.com',
packages=[
'nirhiss',
],
include_package_data=True,
url='http://github.com/afeinstein20/nirhiss',
description='For reducing JWST NIRISS observations',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'': ['README.md', 'LICENSE']},
install_requires=install_requires,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
],
)