adding stan file to setup
This commit is contained in:
parent
c6492a0f20
commit
46e7246f3a
6
setup.py
6
setup.py
|
|
@ -111,6 +111,12 @@ setup(
|
||||||
#
|
#
|
||||||
packages=find_packages(include=['quapy', 'quapy.*']), # Required
|
packages=find_packages(include=['quapy', 'quapy.*']), # Required
|
||||||
|
|
||||||
|
package_data={
|
||||||
|
# For the 'quapy.method' package, include all files
|
||||||
|
# in the 'stan' subdirectory that end with .stan
|
||||||
|
'quapy.method': ['stan/*.stan']
|
||||||
|
},
|
||||||
|
|
||||||
python_requires='>=3.8, <4',
|
python_requires='>=3.8, <4',
|
||||||
|
|
||||||
install_requires=['scikit-learn', 'pandas', 'tqdm', 'matplotlib', 'joblib', 'xlrd', 'abstention', 'ucimlrepo', 'certifi'],
|
install_requires=['scikit-learn', 'pandas', 'tqdm', 'matplotlib', 'joblib', 'xlrd', 'abstention', 'ucimlrepo', 'certifi'],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue