Diff of /setup.py [000000] .. [cec8b4]

Switch to unified view

a b/setup.py
1
import biscuit
2
import setuptools
3
4
with open("README.md", "r") as fh:
5
    long_description = fh.read()
6
7
setuptools.setup(
8
    name="biscuit",
9
    version=biscuit.__version__,
10
    author="James Dolezal",
11
    author_email="james.dolezal@uchospitals.edu",
12
    description="Bayesian Inference of Slide-level Confidence via Uncertainty Index Thresholding",
13
    long_description=long_description,
14
    long_description_content_type="text/markdown",
15
    url="https://github.com/jamesdolezal/biscuit",
16
    packages=setuptools.find_packages(),
17
    classifiers=[
18
        "Programming Language :: Python :: 3",
19
        "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
20
        "Operating System :: OS Independent",
21
    ],
22
    python_requires='>=3.7',
23
    install_requires=[
24
        'slideflow>=1.1rc0'
25
        'pandas'
26
        'click'
27
        'numpy'
28
        'tensorflow>=2.5'
29
        'seaborn'
30
        'scikit-misc'
31
        'scipy'
32
        'tqdm'
33
        'sklearn'
34
    ],
35
)