-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 2.0.0 with PyPI compatability, now that statsmodels 0.12.x is…
… released
- Loading branch information
Ray Pomponio
authored and
Ray Pomponio
committed
May 13, 2021
1 parent
5f89ab6
commit 50ff4b1
Showing
4 changed files
with
43 additions
and
9 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[metadata] | ||
# replace with your username: | ||
name = neuroHarmonize | ||
version = 2.0.0 | ||
author = Raymond Pomponio | ||
author_email = [email protected] | ||
description = Harmonization tools for multi-center neuroimaging studies. | ||
long_description = file: README.rst | ||
long_description_content_type = text/markdown | ||
url = https://github.com/rpomponio/neuroHarmonize | ||
project_urls = | ||
Bug Tracker = https://github.com/rpomponio/neuroHarmonize/issues | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
package_dir = | ||
= src | ||
packages = find: | ||
python_requires = >=3.6 | ||
|
||
[options.packages.find] | ||
where = src |
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,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
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 |
---|---|---|
|
@@ -5,13 +5,13 @@ def readme(): | |
return f.read() | ||
|
||
setup(name='neuroHarmonize', | ||
version='1.0.0', | ||
version='2.0.0', | ||
description='Harmonization tools for multi-center neuroimaging studies.', | ||
long_description=readme(), | ||
url='https://github.com/rpomponio/neuroHarmonize', | ||
author='Raymond Pomponio', | ||
author_email='[email protected]', | ||
license='MIT', | ||
packages=['neuroHarmonize'], | ||
install_requires=['numpy', 'pandas', 'nibabel', 'statsmodels>=0.11.0.dev0'], | ||
install_requires=['numpy', 'pandas', 'nibabel', 'statsmodels>=0.12.0'], | ||
zip_safe=False) |