-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ENH: use pyproject.toml * udpate license file * DEV: 0.1 version
- Loading branch information
Showing
7 changed files
with
64 additions
and
68 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
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
[project] | ||
name = "borsar" | ||
version = "0.1" | ||
description = "tools for electrophysiological analysis, especially cluster-based tests." | ||
maintainers = [ | ||
{ name = "Mikołaj Magnuski", email = "[email protected]" }, | ||
] | ||
|
||
license = { text = "BSD-3-Clause" } | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
requires-python = ">=3.8" | ||
keywords = [ | ||
"neuroscience", | ||
"neuroimaging", | ||
"MEG", | ||
"EEG", | ||
"brain", | ||
] | ||
|
||
dependencies = [ | ||
"numpy >= 1.15.4", | ||
"scipy >= 1.7.1", | ||
"matplotlib >= 3.5.0", | ||
"pandas", | ||
"scikit-image", | ||
"mne >= 1.0.0", | ||
"tqdm", | ||
"h5io", | ||
"h5py" | ||
] | ||
|
||
classifiers = [ | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved", | ||
"Programming Language :: Python", | ||
"Topic :: Software Development", | ||
"Topic :: Scientific/Engineering", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS", | ||
"Programming Language :: Python :: 3", | ||
] | ||
|
||
[build-system] | ||
requires = ["setuptools>=61.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/mmagnuski/borsar" | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["borsar"] | ||
|
||
[tool.setuptools.package-data] | ||
borsar = ["data/*.mat", "data/*.fif"] |