[cec8b4]: / setup.py

Download this file

36 lines (33 with data), 980 Bytes

 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
import biscuit
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="biscuit",
version=biscuit.__version__,
author="James Dolezal",
author_email="james.dolezal@uchospitals.edu",
description="Bayesian Inference of Slide-level Confidence via Uncertainty Index Thresholding",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jamesdolezal/biscuit",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
install_requires=[
'slideflow>=1.1rc0'
'pandas'
'click'
'numpy'
'tensorflow>=2.5'
'seaborn'
'scikit-misc'
'scipy'
'tqdm'
'sklearn'
],
)