-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (33 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="spare_scores",
version="1.2.4",
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",
]
},
)