Skip to content

Commit 935d576

Browse files
committed
Add license and small setup changes
1 parent a400462 commit 935d576

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018-2019 CNRS / Centre de Recherche Astrophysique de Lyon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ graft docs
66
prune docs/_build
77
prune muse_psfr.egg-info
88

9-
global-exclude *.py[cod] __pycache__ *.so .directory .git
9+
global-exclude *.log *.py[cod] __pycache__ .git

setup.cfg

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,22 @@
22
name = muse-psfr
33
description = MUSE WFM-AO PSF reconstruction from SPARTA
44
long_description = file: README.rst
5+
url = https://github.com/musevlt/muse-psfr
56
author = Simon Conseil
67
author_email = [email protected]
78
keywords = astronomy, astrophysics, science, muse, vlt
8-
license = BSD 3-Clause License
9+
license = MIT License
10+
license_file = LICENSE
911
classifiers =
12+
Intended Audience :: Science/Research
13+
License :: OSI Approved :: MIT License
14+
Operating System :: OS Independent
1015
Programming Language :: Python :: 3
16+
Programming Language :: Python :: 3.6
17+
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: Implementation :: CPython
19+
Topic :: Scientific/Engineering :: Astronomy
20+
Topic :: Scientific/Engineering :: Physics
1121

1222
[options]
1323
zip_safe = False
@@ -27,6 +37,9 @@ install_requires =
2737
all = matplotlib; colorama
2838
docs = numpydoc; sphinx_rtd_theme; sphinx-automodapi; sphinxcontrib-programoutput; matplotlib
2939

40+
[options.package_data]
41+
muse_psfr = coeffL0.fits
42+
3043
[options.entry_points]
3144
console_scripts =
3245
muse-psfr = muse_psfr.cli:main

0 commit comments

Comments
 (0)