Commit 8afb62f5 authored by Shuai Feng's avatar Shuai Feng
Browse files

0415 first upload

parent 49327ccd
Loading
Loading
Loading
Loading
Loading

LICENSE

0 → 100644
+19 −0
Original line number Diff line number Diff line
Copyright (c) 2018 The Python Packaging Authority

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
 No newline at end of file

PKG-INFO

0 → 100644
+9 −0
Original line number Diff line number Diff line
Metadata-Version: 2.1
Name: csst-ifs-gehong
Version: 1.0.0
Home-page: https://csst-ifs-gehong.readthedocs.io/en/latest/
Author: Shuai Feng
Author-email: sfeng@hebtu.edu.cn
License: MIT
Keywords: CSST-IFS
License-File: LICENSE
+2 −2
Original line number Diff line number Diff line
# GEHONG
# csst-ifs-gehong Package

GEnerate tHe data Of iNtegral field spectrograph of Galaxy
This is a Python package for modelling the data of intergral field spectrascopy mounted on the Chinese Space Station Telescopy (CSST-IFS). See more detail at [csst-ifs-gehong](https://csst-ifs-gehong.readthedocs.io/).
 No newline at end of file

setup.cfg

0 → 100644
+8 −0
Original line number Diff line number Diff line
[metadata]
description-file = README.md
license_files = LICENSE

[egg_info]
tag_build = 
tag_date = 0

setup.py

0 → 100644
+18 −0
Original line number Diff line number Diff line
from setuptools import setup, find_packages


setup(
    name='csst-ifs-gehong',
    version='1.0.0',
    license='MIT',
    author="Shuai Feng",
    author_email='sfeng@hebtu.edu.cn',
    packages=find_packages('src'),
    package_dir={'': 'src'},
    url='https://csst-ifs-gehong.readthedocs.io/en/latest/',
    keywords='CSST-IFS',
    install_requires=[
          'astropy',
      ],

)
 No newline at end of file
Loading