Skip to content

Commit

Permalink
[FIX] Minor changes to packaging files (#37)
Browse files Browse the repository at this point in the history
* Add license to info.py

* Fix black exclusion files.

* Create MANIFEST.in

* Add copyright info to main mapca file.
  • Loading branch information
tsalo authored Mar 15, 2021
1 parent 6300c36 commit 6d25d1c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include versioneer.py
2 changes: 1 addition & 1 deletion mapca/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
AUTHOR = "mapca developers"
COPYRIGHT = "Copyright 2020, mapca developers"
CREDITS = author_names
LICENSE = ""
LICENSE = "GPL"
MAINTAINER = "Eneko Urunuela"
EMAIL = "[email protected]"
STATUS = "Prototype"
Expand Down
19 changes: 18 additions & 1 deletion mapca/mapca.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
"""PCA based on Moving Average (stationary Gaussian) process
"""PCA based on Moving Average (stationary Gaussian) process.
MAPCA: Moving Average Principal Components Analysis
Copyright (C) 2003-2009 GIFT developers
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
import logging

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ exclude = '''
)/
| get_version.py
| versioneer.py
| nimare/info.py
| nimare/_version.py
| nimare/due.py
| mapca/info.py
| mapca/_version.py
| mapca/due.py
)
'''

0 comments on commit 6d25d1c

Please sign in to comment.