-
Notifications
You must be signed in to change notification settings - Fork 6
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
6c66403
commit 2367bd6
Showing
16 changed files
with
1,932 additions
and
1,473 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,27 +5,32 @@ | |
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
setup(name='spare_scores', | ||
version='1.2.1', | ||
description='Compute characteristic brain signatures of your case population.', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author='Gyujoon Hwang, George Aidinis', | ||
author_email='[email protected], [email protected]', | ||
license='https://www.med.upenn.edu/cbica/software-agreement-non-commercial.html', | ||
packages=find_packages(), | ||
package_data={'spare_scores':['mdl/*.pkl.gz','data/*.csv']}, | ||
include_package_data=True, | ||
install_requires=['numpy', | ||
'pandas', | ||
'setuptools', | ||
'scikit-learn', | ||
'torch<2.3.1', | ||
'matplotlib', | ||
'optuna'], | ||
entry_points={ | ||
'console_scripts': ["spare_score = spare_scores.cli:main", | ||
"spare_scores = spare_scores.cli:main", | ||
"SPARE = spare_scores.cli:main"] | ||
}, | ||
) | ||
setup( | ||
name="spare_scores", | ||
version="1.2.1", | ||
description="Compute characteristic brain signatures of your case population.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Gyujoon Hwang, George Aidinis", | ||
author_email="[email protected], [email protected]", | ||
license="https://www.med.upenn.edu/cbica/software-agreement-non-commercial.html", | ||
packages=find_packages(), | ||
package_data={"spare_scores": ["mdl/*.pkl.gz", "data/*.csv"]}, | ||
include_package_data=True, | ||
install_requires=[ | ||
"numpy", | ||
"pandas", | ||
"setuptools", | ||
"scikit-learn", | ||
"torch<2.3.1", | ||
"matplotlib", | ||
"optuna", | ||
], | ||
entry_points={ | ||
"console_scripts": [ | ||
"spare_score = spare_scores.cli:main", | ||
"spare_scores = spare_scores.cli:main", | ||
"SPARE = spare_scores.cli:main", | ||
] | ||
}, | ||
) |
Oops, something went wrong.