-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (29 loc) · 981 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'pathologyfoundation',
packages=find_packages(),
install_requires=[
"torch",
"transformers",
"clip-anytorch",
"pillow>=9.0.1",
"appdirs",
"pandas",
"numpy",
"tqdm",
"gdown",
"scikit-learn",
],
version = '0.2.7', # Ideally should be same as the GitHub release tag varsion
description="A package of pathology foundation models.",
long_description="Please check our github page: https://github.com/PathologyFoundation/pathologyfoundation",
author = 'Zhi Huang',
author_email = '[email protected]',
url = 'https://github.com/PathologyFoundation/pathologyfoundation',
keywords = ['Pathology', 'Foundation model', "PLIP", "OpenPath"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)