-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a663514
commit 0c37e9e
Showing
1 changed file
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,15 +38,19 @@ def run(self): | |
|
||
|
||
long_description = """ | ||
tikreg: Tikhonov regression in Python. | ||
Tikhonov regression can be used to estimate encoding models with non-spherical multivariate normal priors. | ||
This framework is useful to model biological signals. This package was developed to analyze brain data collected using functional magnetic resonance imaging (fMRI). tikreg can also be used to model other neuroimaging signals (e.g. 2P, ECoG, etc) and LTI signals more generally. | ||
""" | ||
|
||
def main(**kwargs): | ||
setup(name="""tikreg""", | ||
version='0.01', | ||
description="""""", | ||
# author='Anwar O. Nunez-Elizalde', | ||
# author_email='[email protected]', | ||
# url='gallantlab.github.io/cottoncandy/', | ||
version='0.0.1', | ||
description="""tikreg: Tikhonov regression in Python""", | ||
author='Anwar O. Nunez-Elizalde', | ||
author_email='[email protected]', | ||
url='https://gallantlab.github.io/tikreg/', | ||
packages=['tikreg', | ||
], | ||
package_data={ | ||
|