-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release for 0.6 Signed-off-by: Adam Li <[email protected]> * Make release Signed-off-by: Adam Li <[email protected]> --------- Signed-off-by: Adam Li <[email protected]>
- Loading branch information
Showing
5 changed files
with
38 additions
and
24 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
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
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[build-system] | ||
build-backend = 'setuptools.build_meta' | ||
requires = ['setuptools >= 64.0.0'] | ||
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
classifiers = [ | ||
|
@@ -20,13 +20,13 @@ classifiers = [ | |
'Topic :: Software Development', | ||
] | ||
dependencies = [ | ||
'mne >= 1.2', | ||
'netCDF4', | ||
'mne >= 1.6', | ||
'netCDF4 >= 1.6.5', | ||
'numpy >= 1.21', | ||
'pandas', | ||
'pandas >= 1.3.2', | ||
'scipy >= 1.4.0', | ||
'tqdm', | ||
'xarray', | ||
'xarray >= 2023.11.0', | ||
] | ||
description = 'mne-connectivity: A module for connectivity data analysis with MNE.' | ||
keywords = [ | ||
|
@@ -41,9 +41,9 @@ maintainers = [ | |
{email = '[email protected]', name = 'Adam Li'}, | ||
] | ||
name = 'mne-connectivity' | ||
readme = 'README.md' | ||
requires-python = '~=3.9' | ||
version = "0.6.0.dev0" | ||
readme = { file='README.rst', content-type = "text/x-rst"} | ||
requires-python = '>=3.9' | ||
version = "0.6.0" | ||
|
||
[project.optional-dependencies] | ||
all = [ | ||
|
@@ -239,10 +239,7 @@ line-length = 88 | |
'__init__.py' = ['F401'] | ||
|
||
[tool.setuptools] | ||
include-package-data = false | ||
|
||
[tool.setuptools.package-data] | ||
'mne_connectivity.iclabel.network' = ['assets/*'] | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages.find] | ||
exclude = ['mne_connectivity*tests'] | ||
|